Prevent marking quote as paid
This commit is contained in:
parent
45ee040146
commit
faa1889d19
1 changed files with 2 additions and 2 deletions
|
|
@ -123,8 +123,8 @@ class InvoiceDatatable extends EntityDatatable
|
|||
function ($model) use ($entityType) {
|
||||
return "javascript:submitForm_{$entityType}('markPaid', {$model->public_id})";
|
||||
},
|
||||
function ($model) {
|
||||
return $model->balance > 0 && Auth::user()->can('editByOwner', [ENTITY_INVOICE, $model->user_id]);
|
||||
function ($model) use ($entityType) {
|
||||
return $entityType == ENTITY_INVOICE && $model->balance > 0 && Auth::user()->can('editByOwner', [ENTITY_INVOICE, $model->user_id]);
|
||||
}
|
||||
],
|
||||
[
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue