mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
337ed1c719
- Moved translations for industries, countries into texts.php - Removed nested arrays in texts.php
66 lines
1.8 KiB
PHP
66 lines
1.8 KiB
PHP
<?php namespace App\Ninja\Datatables;
|
|
|
|
use Utils;
|
|
use URL;
|
|
use Auth;
|
|
|
|
class RecurringInvoiceDatatable extends EntityDatatable
|
|
{
|
|
public $entityType = ENTITY_RECURRING_INVOICE;
|
|
|
|
public function columns()
|
|
{
|
|
return [
|
|
[
|
|
'frequency',
|
|
function ($model) {
|
|
$frequency = strtolower($model->frequency);
|
|
$frequency = preg_replace('/\s/', '_', $frequency);
|
|
return link_to("invoices/{$model->public_id}", trans('texts.freq_'.$frequency))->toHtml();
|
|
}
|
|
],
|
|
[
|
|
'client_name',
|
|
function ($model) {
|
|
return link_to("clients/{$model->client_public_id}", Utils::getClientDisplayName($model))->toHtml();
|
|
},
|
|
! $this->hideClient
|
|
],
|
|
[
|
|
'start_date',
|
|
function ($model) {
|
|
return Utils::fromSqlDate($model->start_date);
|
|
}
|
|
],
|
|
[
|
|
'end_date',
|
|
function ($model) {
|
|
return Utils::fromSqlDate($model->end_date);
|
|
}
|
|
],
|
|
[
|
|
'amount',
|
|
function ($model) {
|
|
return Utils::formatMoney($model->amount, $model->currency_id, $model->country_id);
|
|
}
|
|
]
|
|
];
|
|
}
|
|
|
|
public function actions()
|
|
{
|
|
return [
|
|
[
|
|
trans('texts.edit_invoice'),
|
|
function ($model) {
|
|
return URL::to("invoices/{$model->public_id}/edit");
|
|
},
|
|
function ($model) {
|
|
return Auth::user()->can('editByOwner', [ENTITY_INVOICE, $model->user_id]);
|
|
}
|
|
]
|
|
];
|
|
}
|
|
|
|
}
|