mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
fdb5b3baf1
* Allow sorting by months for depreciation list view * Added dataTableLayout to standardize the list display table * Implement the dataTableLayout() on the list view blade * Split the view into tabs so we can combine asset depreciations and license depreciations * Updated depreciation view to use tabbed interface for assets and licenses * Added asset models to depreciation details page * Make asset model category sortable * Added cateory as allowed to be sorted on * Added category sort scope * Removed offset variable * Small fixes to asset modes display in depreciation to bulk edit models
63 lines
1.8 KiB
PHP
Executable file
63 lines
1.8 KiB
PHP
Executable file
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
Depreciations
|
|
@parent
|
|
@stop
|
|
|
|
@section('header_right')
|
|
<a href="{{ route('depreciations.create') }}" class="btn btn-primary pull-right">
|
|
{{ trans('general.create') }}</a>
|
|
@stop
|
|
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
<div class="box box-default">
|
|
<div class="box-body">
|
|
<div class="table-responsive">
|
|
|
|
<table
|
|
data-columns="{{ \App\Presenters\DepreciationPresenter::dataTableLayout() }}"
|
|
data-cookie-id-table="depreciationsTable"
|
|
data-pagination="true"
|
|
data-id-table="depreciationsTable"
|
|
data-search="true"
|
|
data-side-pagination="server"
|
|
data-show-columns="true"
|
|
data-show-export="true"
|
|
data-show-refresh="true"
|
|
data-sort-order="asc"
|
|
id="depreciationsTable"
|
|
class="table table-striped snipe-table"
|
|
data-url="{{ route('api.depreciations.index') }}"
|
|
data-export-options='{
|
|
"fileName": "export-depreciations-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'>
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> <!-- /.col-md-9-->
|
|
|
|
|
|
<!-- side address column -->
|
|
<div class="col-md-3">
|
|
<h2>{{ trans('admin/depreciations/general.about_asset_depreciations') }}</h4>
|
|
<p>{{ trans('admin/depreciations/general.about_depreciations') }} </p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table', ['exportFile' => 'depreciations-export', 'search' => true])
|
|
@stop
|