mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
38 lines
841 B
PHP
38 lines
841 B
PHP
<?php
|
|
|
|
namespace App\Ninja\Datatables;
|
|
|
|
use Auth;
|
|
use URL;
|
|
use Utils;
|
|
|
|
class PaymentTermDatatable extends EntityDatatable
|
|
{
|
|
public $entityType = ENTITY_PAYMENT_TERM;
|
|
public $sortCol = 1;
|
|
|
|
public function columns()
|
|
{
|
|
return [
|
|
[
|
|
'num_days',
|
|
function ($model) {
|
|
return link_to("payment_terms/{$model->public_id}/edit", trans('texts.payment_terms_net') . ' ' . ($model->num_days == -1 ? 0 : $model->num_days))->toHtml();
|
|
},
|
|
],
|
|
];
|
|
}
|
|
|
|
public function actions()
|
|
{
|
|
return [
|
|
[
|
|
trans('texts.edit_payment_term'),
|
|
function ($model) {
|
|
return URL::to("payment_terms/{$model->public_id}/edit");
|
|
},
|
|
],
|
|
];
|
|
}
|
|
}
|