2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Ninja\Datatables;
|
2016-05-23 18:52:20 +02:00
|
|
|
|
|
|
|
use Auth;
|
2017-01-30 20:40:43 +01:00
|
|
|
use URL;
|
|
|
|
use Utils;
|
2016-05-23 18:52:20 +02:00
|
|
|
|
|
|
|
class CreditDatatable extends EntityDatatable
|
|
|
|
{
|
|
|
|
public $entityType = ENTITY_CREDIT;
|
2016-11-24 10:41:11 +01:00
|
|
|
public $sortCol = 4;
|
2016-11-30 19:21:50 +01:00
|
|
|
|
2016-05-23 18:52:20 +02:00
|
|
|
public function columns()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'client_name',
|
|
|
|
function ($model) {
|
2017-01-30 20:40:43 +01:00
|
|
|
if (! Auth::user()->can('viewByOwner', [ENTITY_CLIENT, $model->client_user_id])) {
|
2016-05-23 18:52:20 +02:00
|
|
|
return Utils::getClientDisplayName($model);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $model->client_public_id ? link_to("clients/{$model->client_public_id}", Utils::getClientDisplayName($model))->toHtml() : '';
|
|
|
|
},
|
2017-01-30 20:40:43 +01:00
|
|
|
! $this->hideClient,
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'amount',
|
|
|
|
function ($model) {
|
|
|
|
return Utils::formatMoney($model->amount, $model->currency_id, $model->country_id) . '<span '.Utils::getEntityRowClass($model).'/>';
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'balance',
|
|
|
|
function ($model) {
|
|
|
|
return Utils::formatMoney($model->balance, $model->currency_id, $model->country_id);
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'credit_date',
|
|
|
|
function ($model) {
|
2017-01-30 17:05:31 +01:00
|
|
|
if (! Auth::user()->can('viewByOwner', [ENTITY_CREDIT, $model->user_id])) {
|
2017-03-28 11:40:53 +02:00
|
|
|
return Utils::fromSqlDate($model->credit_date_sql);
|
2016-12-04 11:24:48 +01:00
|
|
|
}
|
|
|
|
|
2017-03-28 11:40:53 +02:00
|
|
|
return link_to("credits/{$model->public_id}/edit", Utils::fromSqlDate($model->credit_date_sql))->toHtml();
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'private_notes',
|
|
|
|
function ($model) {
|
|
|
|
return $model->private_notes;
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
|
|
|
],
|
2016-05-23 18:52:20 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actions()
|
|
|
|
{
|
|
|
|
return [
|
2016-11-30 19:21:50 +01:00
|
|
|
[
|
|
|
|
trans('texts.edit_credit'),
|
|
|
|
function ($model) {
|
|
|
|
return URL::to("credits/{$model->public_id}/edit");
|
|
|
|
},
|
|
|
|
function ($model) {
|
|
|
|
return Auth::user()->can('editByOwner', [ENTITY_CREDIT, $model->user_id]);
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-11-30 19:21:50 +01:00
|
|
|
],
|
2016-05-23 18:52:20 +02:00
|
|
|
[
|
|
|
|
trans('texts.apply_credit'),
|
|
|
|
function ($model) {
|
|
|
|
return URL::to("payments/create/{$model->client_public_id}") . '?paymentTypeId=1';
|
|
|
|
},
|
2016-07-21 14:35:23 +02:00
|
|
|
function ($model) {
|
2016-05-23 18:52:20 +02:00
|
|
|
return Auth::user()->can('create', ENTITY_PAYMENT);
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
|
|
|
],
|
2016-05-23 18:52:20 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|