Add new quote action to clients
This commit is contained in:
parent
b68351a5cc
commit
342da329d4
|
|
@ -648,6 +648,10 @@ abstract class ClientEntity extends Object
|
||||||
actions.add(EntityAction.newInvoice);
|
actions.add(EntityAction.newInvoice);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (userCompany.canCreate(EntityType.quote)) {
|
||||||
|
actions.add(EntityAction.newQuote);
|
||||||
|
}
|
||||||
|
|
||||||
if (userCompany.canCreate(EntityType.payment)) {
|
if (userCompany.canCreate(EntityType.payment)) {
|
||||||
actions.add(EntityAction.newPayment);
|
actions.add(EntityAction.newPayment);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue