mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
816d2fd095
* Update composer phpcs * Minor Fixes found while working. ALlow user_id to be nullable in category model validation Point to the correct route in accessoriespresenter datatable. Also add name() method Add a translated category name Fix typo in translation * Add a method to the asset presenter to show deployed when asset is deployed. Fixes #3114
176 lines
5.6 KiB
PHP
176 lines
5.6 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: parallelgrapefruit
|
|
* Date: 12/23/16
|
|
* Time: 11:51 AM
|
|
*/
|
|
|
|
namespace App\Presenters;
|
|
|
|
use App\Helpers\Helper;
|
|
use Illuminate\Support\Facades\Gate;
|
|
|
|
/**
|
|
* Class AccessoryPresenter
|
|
* @package App\Presenters
|
|
*/
|
|
class AccessoryPresenter extends Presenter
|
|
{
|
|
/**
|
|
* Json Column Layout for bootstrap table
|
|
* @return string
|
|
*/
|
|
public static function dataTableLayout()
|
|
{
|
|
$layout = [
|
|
[
|
|
"field" => "companyName",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"switchable" => true,
|
|
"title" => trans('admin/companies/table.title'),
|
|
"visible" => false,
|
|
], [
|
|
"field" => "name",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"title" => trans('admin/accessories/table.title'),
|
|
], [
|
|
"field" => "category",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"title" => trans('admin/accessories/general.accessory_category'),
|
|
], [
|
|
"field" => "model_number",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"title" => trans('admin/models/table.modelnumber'),
|
|
], [
|
|
"field" => "manufacturer",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"title" => trans('general.manufacturer'),
|
|
], [
|
|
"field" => "location",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"title" => trans('general.location'),
|
|
], [
|
|
"field" => "qty",
|
|
"searchable" => false,
|
|
"sortable" => false,
|
|
"title" => trans('admin/accessories/general.total'),
|
|
], [
|
|
"field" => "purchase_date",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"visible" => false,
|
|
"title" => trans('general.purchase_date'),
|
|
], [
|
|
"field" => "purchase_cost",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"title" => trans('general.purchase_cost'),
|
|
], [
|
|
"field" => "order_number",
|
|
"searchable" => true,
|
|
"sortable" => true,
|
|
"visible" => false,
|
|
"title" => trans('general.order_number'),
|
|
], [
|
|
"field" => "min_amt",
|
|
"searchable" => false,
|
|
"sortable" => true,
|
|
"title" => trans('general.min_amt'),
|
|
], [
|
|
"field" => "numRemaining",
|
|
"searchable" => false,
|
|
"sortable" => false,
|
|
"title" => trans('admin/accessories/general.remaining'),
|
|
], [
|
|
"field" => "actions",
|
|
"searchable" => false,
|
|
"sortable" => false,
|
|
"switchable" => false,
|
|
"title" => trans('table.actions'),
|
|
]
|
|
];
|
|
|
|
return json_encode($layout);
|
|
}
|
|
|
|
/**
|
|
* JSON representation of Accessory for datatable.
|
|
* @return array
|
|
*/
|
|
public function forDataTable()
|
|
{
|
|
|
|
$actions = '<nobr>';
|
|
if (Gate::allows('checkout', $this->model)) {
|
|
$actions .= Helper::generateDatatableButton(
|
|
'checkout',
|
|
route('checkout/accessory', $this->id),
|
|
$this->numRemaining() > 0
|
|
);
|
|
}
|
|
if (Gate::allows('update', $this->model)) {
|
|
$actions .= Helper::generateDatatableButton('edit', route('accessories.edit', $this->id));
|
|
}
|
|
if (Gate::allows('delete', $this->model)) {
|
|
$actions .= Helper::generateDatatableButton(
|
|
'delete',
|
|
route('accessories.destroy', $this->id),
|
|
true, /*enabled*/
|
|
trans('admin/accessories/message.delete.confirm'),
|
|
$this->name
|
|
);
|
|
}
|
|
$actions .= '</nobr>';
|
|
|
|
$results = [];
|
|
$results['name'] = $this->nameUrl();
|
|
$results['category'] = '';
|
|
if ($this->model->category) {
|
|
$results['category'] = $this->model->category->present()->nameUrl();
|
|
}
|
|
$results['model_number'] = $this->model_number;
|
|
$results['qty'] = $this->qty;
|
|
$results['order_number'] = $this->order_number;
|
|
$results['min_amt'] = $this->min_amt;
|
|
$results['location'] = $this->model->location ? $this->model->location->present()->nameUrl() : '';
|
|
$results['purchase_date'] = $this->purchase_date;
|
|
$results['purchase_cost'] = Helper::formatCurrencyOutput($this->purchase_cost);
|
|
$results['numRemaining'] = $this->numRemaining();
|
|
$results['companyName'] = $this->model->company ? $this->model->company->present()->nameUrl() : '';
|
|
$results['manufacturer'] = $this->model->manufacturer ? $this->model->manufacturer->present()->nameUrl() : '';
|
|
$results['actions'] = $actions;
|
|
|
|
return $results;
|
|
}
|
|
|
|
/**
|
|
* Pregenerated link to this accessories view page.
|
|
* @return string
|
|
*/
|
|
public function nameUrl()
|
|
{
|
|
return (string) link_to_route('accessories.show', $this->name, $this->id);
|
|
}
|
|
|
|
/**
|
|
* Url to view this item.
|
|
* @return string
|
|
*/
|
|
public function viewUrl()
|
|
{
|
|
return route('accessories.show', $this->id);
|
|
}
|
|
|
|
public function name()
|
|
{
|
|
return $this->model->name;
|
|
}
|
|
}
|