2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2016-12-27 12:03:47 -08:00
|
|
|
{{ trans('admin/asset_maintenances/general.asset_maintenances') }}
|
|
|
|
@parent
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
@section('header_right')
|
2016-12-19 11:04:28 -08:00
|
|
|
@can('update', \App\Models\Asset::class)
|
|
|
|
<a href="{{ route('maintenances.create') }}" class="btn btn-primary pull-right"> {{ trans('general.create') }}</a>
|
2016-11-29 13:37:45 -08:00
|
|
|
@endcan
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="box box-default">
|
2016-12-27 12:03:47 -08:00
|
|
|
<div class="box-body">
|
2018-02-16 13:22:55 -08:00
|
|
|
|
|
|
|
<table
|
|
|
|
data-cookie-id-table="maintenancesTable"
|
|
|
|
data-pagination="true"
|
|
|
|
data-search="true"
|
|
|
|
data-side-pagination="server"
|
|
|
|
data-show-columns="true"
|
|
|
|
data-show-footer="true"
|
|
|
|
data-show-export="true"
|
|
|
|
data-show-refresh="true"
|
|
|
|
id="maintenancesTable"
|
|
|
|
class="table table-striped snipe-table"
|
|
|
|
data-url="{{route('api.maintenances.index') }}"
|
|
|
|
data-export-options='{
|
|
|
|
"fileName": "export-maintenances-{{ date('Y-m-d') }}",
|
|
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
|
|
}'>
|
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-02-16 13:22:55 -08:00
|
|
|
<th data-sortable="true" data-field="id" data-visible="true">{{ trans('general.id') }}</th>
|
|
|
|
<th data-field="company" data-sortable="false" data-visible="true">{{ trans('admin/companies/table.title') }}</th>
|
2018-03-05 16:26:40 -08:00
|
|
|
<th data-sortable="true" data-visible="false" data-field="asset_name" data-formatter="assetNameLinkFormatter">{{ trans('admin/asset_maintenances/table.asset_name') }}</th>
|
|
|
|
<th data-field="asset_tag" data-sortable="true" data-visible="true" data-formatter="assetTagLinkFormatter">{{ trans('admin/hardware/table.asset_tag') }}</th>
|
|
|
|
<th data-sortable="false" data-visible="true" data-field="location" data-formatter="locationsLinkObjFormatter">{{ trans('admin/hardware/table.location') }}</th>
|
|
|
|
<th data-sortable="false" data-visible="true" data-field="supplier" data-formatter="suppliersLinkObjFormatter">{{ trans('general.supplier') }}</th>
|
2018-02-16 13:22:55 -08:00
|
|
|
<th data-searchable="true" data-visible="true" data-sortable="true" data-field="asset_maintenance_type">{{ trans('admin/asset_maintenances/form.asset_maintenance_type') }}</th>
|
|
|
|
<th data-searchable="true" data-visible="true" data-sortable="true" data-field="title">{{ trans('admin/asset_maintenances/form.title') }}</th>
|
|
|
|
<th data-searchable="true" data-visible="true" data-sortable="true" data-field="start_date" data-formatter="dateDisplayFormatter">{{ trans('admin/asset_maintenances/form.start_date') }}</th>
|
|
|
|
<th data-searchable="true" data-visible="true" data-sortable="true" data-field="completion_date" data-formatter="dateDisplayFormatter">{{ trans('admin/asset_maintenances/form.completion_date') }}</th>
|
|
|
|
<th class="text-right" data-searchable="true" data-visible="true" data-sortable="true" data-field="asset_maintenance_time" data-footer-formatter="sumFormatter">{{ trans('admin/asset_maintenances/form.asset_maintenance_time') }}</th>
|
|
|
|
<th data-searchable="true" data-sortable="true" data-field="cost" class="text-right" data-footer-formatter="sumFormatter">{{ trans('admin/asset_maintenances/form.cost') }}</th>
|
|
|
|
<th data-searchable="true" data-visible="true" data-sortable="true" data-field="user_id" data-formatter="usersLinkObjFormatter">{{ trans('general.admin') }}</th>
|
2018-02-16 21:38:56 -08:00
|
|
|
<th data-searchable="true" data-visible="true" data-sortable="true" data-field="notes" data-formatter="notesFormatter">{{ trans('admin/asset_maintenances/form.notes') }}</th>
|
2016-12-27 12:03:47 -08:00
|
|
|
@can('update', \App\Models\Asset::class)
|
2017-08-22 13:52:06 -07:00
|
|
|
<th data-switchable="false" data-searchable="false" data-sortable="false" data-field="actions" data-formatter="maintenanceActions">{{ trans('table.actions') }}</th>
|
2016-11-29 13:37:45 -08:00
|
|
|
@endcan
|
2016-12-27 12:03:47 -08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('moar_scripts')
|
2016-11-23 06:15:40 -08:00
|
|
|
@include ('partials.bootstrap-table', ['exportFile' => 'maintenances-export', 'search' => true])
|
2017-09-28 19:45:15 -07:00
|
|
|
<script nonce="{{ csrf_token() }}">
|
2017-08-22 13:52:06 -07:00
|
|
|
function maintenanceActions(value, row) {
|
2017-09-05 17:54:58 -07:00
|
|
|
var actions = '<nobr>';
|
|
|
|
if ((row) && (row.available_actions.update === true)) {
|
|
|
|
actions += '<a href="{{ url('/') }}/hardware/maintenances/' + row.id + '/edit" class="btn btn-sm btn-warning" data-tooltip="true" title="Update"><i class="fa fa-pencil"></i></a> ';
|
|
|
|
}
|
|
|
|
actions += '</nobr>'
|
2017-08-22 13:52:06 -07:00
|
|
|
if ((row) && (row.available_actions.delete === true)) {
|
2017-09-05 17:54:58 -07:00
|
|
|
actions += '<a href="{{ url('/') }}/hardware/maintenances/' + row.id + '" '
|
2017-08-22 13:52:06 -07:00
|
|
|
+ ' class="btn btn-danger btn-sm delete-asset" data-tooltip="true" '
|
|
|
|
+ ' data-toggle="modal" '
|
|
|
|
+ ' data-content="{{ trans('general.sure_to_delete') }} ' + row.name + '?" '
|
|
|
|
+ ' data-title="{{ trans('general.delete') }}" onClick="return false;">'
|
|
|
|
+ '<i class="fa fa-trash"></i></a></nobr>';
|
|
|
|
}
|
2017-09-05 17:54:58 -07:00
|
|
|
|
|
|
|
return actions;
|
2017-08-22 13:52:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|