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 VendorDatatable extends EntityDatatable
|
|
|
|
{
|
|
|
|
public $entityType = ENTITY_VENDOR;
|
2016-11-24 10:46:57 +01:00
|
|
|
public $sortCol = 4;
|
2016-05-23 18:52:20 +02:00
|
|
|
|
|
|
|
public function columns()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
'name',
|
|
|
|
function ($model) {
|
2017-10-14 19:55:37 +02:00
|
|
|
$str = link_to("vendors/{$model->public_id}", $model->name ?: '')->toHtml();
|
|
|
|
return $this->addNote($str, $model->private_notes);
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'city',
|
|
|
|
function ($model) {
|
|
|
|
return $model->city;
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'work_phone',
|
|
|
|
function ($model) {
|
|
|
|
return $model->work_phone;
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
|
|
|
'email',
|
|
|
|
function ($model) {
|
|
|
|
return link_to("vendors/{$model->public_id}", $model->email ?: '')->toHtml();
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
2017-08-16 09:56:28 +02:00
|
|
|
'created_at',
|
2016-05-23 18:52:20 +02:00
|
|
|
function ($model) {
|
|
|
|
return Utils::timestampToDateString(strtotime($model->created_at));
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function actions()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
[
|
|
|
|
trans('texts.edit_vendor'),
|
|
|
|
function ($model) {
|
|
|
|
return URL::to("vendors/{$model->public_id}/edit");
|
|
|
|
},
|
|
|
|
function ($model) {
|
2018-06-07 12:08:34 +02:00
|
|
|
return Auth::user()->can('view', [ENTITY_VENDOR, $model]);
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
],
|
|
|
|
[
|
2017-01-30 17:05:31 +01:00
|
|
|
'--divider--', function () {
|
|
|
|
return false;
|
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
function ($model) {
|
2018-06-07 12:08:34 +02:00
|
|
|
return Auth::user()->can('edit', [ENTITY_VENDOR, $model]) && Auth::user()->can('create', ENTITY_EXPENSE);
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
2016-05-23 18:52:20 +02:00
|
|
|
|
|
|
|
],
|
|
|
|
[
|
|
|
|
trans('texts.enter_expense'),
|
|
|
|
function ($model) {
|
2018-05-08 22:16:35 +02:00
|
|
|
return URL::to("expenses/create/0/{$model->public_id}");
|
2016-05-23 18:52:20 +02:00
|
|
|
},
|
|
|
|
function ($model) {
|
|
|
|
return Auth::user()->can('create', ENTITY_EXPENSE);
|
2017-01-30 20:40:43 +01:00
|
|
|
},
|
|
|
|
],
|
2016-05-23 18:52:20 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|