mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php namespace App\Services;
|
|
|
|
use URL;
|
|
use Auth;
|
|
use App\Services\BaseService;
|
|
use App\Ninja\Repositories\PaymentTermRepository;
|
|
|
|
class PaymentTermService extends BaseService
|
|
{
|
|
protected $paymentTermRepo;
|
|
protected $datatableService;
|
|
|
|
public function __construct(PaymentTermRepository $paymentTermRepo, DatatableService $datatableService)
|
|
{
|
|
$this->paymentTermRepo = $paymentTermRepo;
|
|
$this->datatableService = $datatableService;
|
|
}
|
|
|
|
protected function getRepo()
|
|
{
|
|
return $this->paymentTermRepo;
|
|
}
|
|
|
|
public function getDatatable($accountId = 0)
|
|
{
|
|
$query = $this->paymentTermRepo->find();
|
|
|
|
return $this->datatableService->createDatatable(ENTITY_PAYMENT_TERM, $query, false);
|
|
}
|
|
|
|
public function columns($entityType, $hideClient)
|
|
{
|
|
return [
|
|
[
|
|
'name',
|
|
function ($model) {
|
|
return link_to("payment_terms/{$model->public_id}/edit", $model->name)->toHtml();
|
|
}
|
|
],
|
|
[
|
|
'days',
|
|
function ($model) {
|
|
return $model->num_days;
|
|
}
|
|
]
|
|
];
|
|
}
|
|
|
|
public function actions($entityType)
|
|
{
|
|
return [
|
|
[
|
|
uctrans('texts.edit_payment_terms'),
|
|
function ($model) {
|
|
return URL::to("payment_terms/{$model->public_id}/edit");
|
|
}
|
|
]
|
|
];
|
|
}
|
|
}
|