1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Ninja/Datatables/CreditDatatable.php

93 lines
3.0 KiB
PHP
Raw Normal View History

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) {
if (Auth::user()->can('view', [ENTITY_CLIENT, $model]))
return $model->client_public_id ? link_to("clients/{$model->client_public_id}", Utils::getClientDisplayName($model))->toHtml() : '';
else
2016-05-23 18:52:20 +02:00
return Utils::getClientDisplayName($model);
},
2017-01-30 20:40:43 +01:00
! $this->hideClient,
2016-05-23 18:52:20 +02:00
],
[
'amount',
function ($model) {
if(Auth::user()->can('view', [ENTITY_CLIENT, $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) {
if(Auth::user()->can('view', [ENTITY_CLIENT, $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) {
if (Auth::user()->can('view', [ENTITY_CREDIT, $model]))
return link_to("credits/{$model->public_id}/edit", Utils::fromSqlDate($model->credit_date_sql))->toHtml();
else
2017-03-28 11:40:53 +02:00
return Utils::fromSqlDate($model->credit_date_sql);
2016-12-04 11:24:48 +01:00
2017-01-30 20:40:43 +01:00
},
2016-05-23 18:52:20 +02:00
],
2017-03-30 10:46:52 +02:00
[
'public_notes',
function ($model) {
if (Auth::user()->can('view', [ENTITY_CREDIT, $model]))
return e($model->public_notes);
2017-03-30 10:46:52 +02:00
},
],
2016-05-23 18:52:20 +02:00
[
'private_notes',
function ($model) {
if (Auth::user()->can('view', [ENTITY_CREDIT, $model]))
return e($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('view', [ENTITY_CREDIT, $model]);
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
];
}
}