mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Split categories into two tabs if the type = asset
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
e393e2eb4b
commit
5496b62b33
|
@ -24,83 +24,155 @@
|
||||||
{{-- Page content --}}
|
{{-- Page content --}}
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="box box-default">
|
|
||||||
<div class="box-body">
|
|
||||||
@if ($category->category_type=='asset')
|
|
||||||
@include('partials.asset-bulk-actions')
|
|
||||||
@endif
|
|
||||||
|
|
||||||
<table
|
|
||||||
|
|
||||||
@if ($category->category_type=='asset')
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
data-columns="{{ \App\Presenters\AssetPresenter::dataTableLayout() }}"
|
<div class="nav-tabs-custom">
|
||||||
data-cookie-id-table="categoryAssetsTable"
|
<ul class="nav nav-tabs">
|
||||||
id="categoryAssetsTable"
|
<li class="active">
|
||||||
data-id-table="categoryAssetsTable"
|
<a href="#items" data-toggle="tab" title="{{ trans('general.items') }}">{{ trans('general.'.$category->category_type) }}
|
||||||
data-export-options='{
|
@if ($category->category_type=='asset')
|
||||||
|
<badge class="badge badge-secondary"> {{ $category->assets->count() }}</badge>
|
||||||
|
@endif
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
@if ($category->category_type=='asset')
|
||||||
|
<li>
|
||||||
|
<a href="#models" data-toggle="tab" title="{{ trans('general.asset_models') }}">{{ trans('general.asset_models') }}
|
||||||
|
<badge class="badge badge-secondary"> {{ $category->models->count()}}</badge>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
@endif
|
||||||
|
</ul>
|
||||||
|
<div class="tab-content">
|
||||||
|
<div class="tab-pane fade in active" id="items">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="table-responsive">
|
||||||
|
@if ($category->category_type=='asset')
|
||||||
|
@include('partials.asset-bulk-actions')
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<table
|
||||||
|
|
||||||
|
@if ($category->category_type=='asset')
|
||||||
|
|
||||||
|
data-columns="{{ \App\Presenters\AssetPresenter::dataTableLayout() }}"
|
||||||
|
data-cookie-id-table="categoryAssetsTable"
|
||||||
|
id="categoryAssetsTable"
|
||||||
|
data-id-table="categoryAssetsTable"
|
||||||
|
data-toolbar="#assetsBulkEditToolbar"
|
||||||
|
data-bulk-button-id="#bulkAssetEditButton"
|
||||||
|
data-bulk-form-id="#assetsBulkForm"
|
||||||
|
data-export-options='{
|
||||||
"fileName": "export-{{ str_slug($category->name) }}-assets-{{ date('Y-m-d') }}",
|
"fileName": "export-{{ str_slug($category->name) }}-assets-{{ date('Y-m-d') }}",
|
||||||
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
||||||
}'
|
}'
|
||||||
@elseif ($category->category_type=='accessory')
|
@elseif ($category->category_type=='accessory')
|
||||||
data-columns="{{ \App\Presenters\AccessoryPresenter::dataTableLayout() }}"
|
data-columns="{{ \App\Presenters\AccessoryPresenter::dataTableLayout() }}"
|
||||||
data-cookie-id-table="categoryAccessoryTable"
|
data-cookie-id-table="categoryAccessoryTable"
|
||||||
id="categoryAccessoryTable"
|
id="categoryAccessoryTable"
|
||||||
data-id-table="categoryAccessoryTable"
|
data-id-table="categoryAccessoryTable"
|
||||||
data-export-options='{
|
data-export-options='{
|
||||||
"fileName": "export-{{ str_slug($category->name) }}-accessories-{{ date('Y-m-d') }}",
|
"fileName": "export-{{ str_slug($category->name) }}-accessories-{{ date('Y-m-d') }}",
|
||||||
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
||||||
}'
|
}'
|
||||||
@elseif ($category->category_type=='consumable')
|
@elseif ($category->category_type=='consumable')
|
||||||
data-columns="{{ \App\Presenters\ConsumablePresenter::dataTableLayout() }}"
|
data-columns="{{ \App\Presenters\ConsumablePresenter::dataTableLayout() }}"
|
||||||
data-cookie-id-table="categoryConsumableTable"
|
data-cookie-id-table="categoryConsumableTable"
|
||||||
id="categoryConsumableTable"
|
id="categoryConsumableTable"
|
||||||
data-id-table="categoryConsumableTable"
|
data-id-table="categoryConsumableTable"
|
||||||
data-export-options='{
|
data-export-options='{
|
||||||
"fileName": "export-{{ str_slug($category->name) }}-consumables-{{ date('Y-m-d') }}",
|
"fileName": "export-{{ str_slug($category->name) }}-consumables-{{ date('Y-m-d') }}",
|
||||||
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
||||||
}'
|
}'
|
||||||
@elseif ($category->category_type=='component')
|
@elseif ($category->category_type=='component')
|
||||||
data-columns="{{ \App\Presenters\ComponentPresenter::dataTableLayout() }}"
|
data-columns="{{ \App\Presenters\ComponentPresenter::dataTableLayout() }}"
|
||||||
data-cookie-id-table="categoryCompomnentTable"
|
data-cookie-id-table="categoryCompomnentTable"
|
||||||
id="categoryCompomnentTable"
|
id="categoryCompomnentTable"
|
||||||
data-id-table="categoryCompomnentTable"
|
data-id-table="categoryCompomnentTable"
|
||||||
data-export-options='{
|
data-export-options='{
|
||||||
"fileName": "export-{{ str_slug($category->name) }}-components-{{ date('Y-m-d') }}",
|
"fileName": "export-{{ str_slug($category->name) }}-components-{{ date('Y-m-d') }}",
|
||||||
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
||||||
}'
|
}'
|
||||||
@elseif ($category->category_type=='license')
|
@elseif ($category->category_type=='license')
|
||||||
data-columns="{{ \App\Presenters\LicensePresenter::dataTableLayout() }}"
|
data-columns="{{ \App\Presenters\LicensePresenter::dataTableLayout() }}"
|
||||||
data-cookie-id-table="categoryLicenseTable"
|
data-cookie-id-table="categoryLicenseTable"
|
||||||
id="categoryLicenseTable"
|
id="categoryLicenseTable"
|
||||||
data-id-table="categoryLicenseTable"
|
data-id-table="categoryLicenseTable"
|
||||||
data-export-options='{
|
data-export-options='{
|
||||||
"fileName": "export-{{ str_slug($category->name) }}-licenses-{{ date('Y-m-d') }}",
|
"fileName": "export-{{ str_slug($category->name) }}-licenses-{{ date('Y-m-d') }}",
|
||||||
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
||||||
}'
|
}'
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
data-pagination="true"
|
data-pagination="true"
|
||||||
data-search="true"
|
data-search="true"
|
||||||
data-show-footer="true"
|
data-show-footer="true"
|
||||||
data-side-pagination="server"
|
data-side-pagination="server"
|
||||||
data-show-columns="true"
|
data-show-columns="true"
|
||||||
data-show-export="true"
|
data-show-export="true"
|
||||||
data-show-refresh="true"
|
data-show-refresh="true"
|
||||||
data-sort-order="asc"
|
data-sort-order="asc"
|
||||||
class="table table-striped snipe-table"
|
class="table table-striped snipe-table"
|
||||||
data-url="{{ route('api.'.$category_type_route.'.index',['category_id'=> $category->id]) }}">
|
data-url="{{ route('api.'.$category_type_route.'.index',['category_id'=> $category->id]) }}">
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
<div class="tab-pane fade" id="models">
|
||||||
</div>
|
<div class="row">
|
||||||
</div>
|
<div class="col-md-12">
|
||||||
</div>
|
|
||||||
|
@if ($category->models->count() > 0)
|
||||||
|
@if ($category->category_type=='asset')
|
||||||
|
@include('partials.models-bulk-actions')
|
||||||
|
@endif
|
||||||
|
@endif
|
||||||
|
|
||||||
|
<table
|
||||||
|
data-columns="{{ \App\Presenters\AssetModelPresenter::dataTableLayout() }}"
|
||||||
|
data-cookie-id-table="asssetModelsTable"
|
||||||
|
data-pagination="true"
|
||||||
|
data-id-table="asssetModelsTable"
|
||||||
|
data-search="true"
|
||||||
|
data-show-footer="true"
|
||||||
|
data-side-pagination="server"
|
||||||
|
data-show-columns="true"
|
||||||
|
data-toolbar="#modelsBulkEditToolbar"
|
||||||
|
data-bulk-button-id="#bulkModelsEditButton"
|
||||||
|
data-bulk-form-id="#modelsBulkForm"
|
||||||
|
data-show-export="true"
|
||||||
|
data-show-refresh="true"
|
||||||
|
data-sort-order="asc"
|
||||||
|
id="asssetModelsTable"
|
||||||
|
class="table table-striped snipe-table"
|
||||||
|
data-url="{{ route('api.models.index', ['status' => request('status')]) }}"
|
||||||
|
data-export-options='{
|
||||||
|
"fileName": "export-models-{{ date('Y-m-d') }}",
|
||||||
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
||||||
|
}'>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div> <!-- .tab-content-->
|
||||||
|
</div> <!-- .nav-tabs-custom -->
|
||||||
|
</div> <!-- .col-md-12> -->
|
||||||
|
</div> <!-- .row -->
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@section('moar_scripts')
|
@section('moar_scripts')
|
||||||
@include ('partials.bootstrap-table')
|
@include ('partials.bootstrap-table')
|
||||||
@stop
|
@stop
|
||||||
|
|
Loading…
Reference in a new issue