mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
d016076806
* Fixed #6956 - Added additional gates show showing/hiding license keys * Modified gate to allow user to see licenses if they can create or edit the license as well
92 lines
4.7 KiB
PHP
92 lines
4.7 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('general.license_report') }}
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="box box-default">
|
|
<div class="box-body">
|
|
<div class="table-responsive">
|
|
|
|
<table
|
|
data-cookie-id-table="licensesReport"
|
|
data-pagination="true"
|
|
data-id-table="licensesReport"
|
|
data-search="true"
|
|
data-side-pagination="client"
|
|
data-show-columns="true"
|
|
data-show-export="true"
|
|
data-show-refresh="true"
|
|
data-sort-order="asc"
|
|
id="licensesReport"
|
|
class="table table-striped snipe-table"
|
|
data-export-options='{
|
|
"fileName": "license-report-{{ date('Y-m-d') }}",
|
|
"ignoreColumn": ["actions","image","change","checkbox","checkincheckout","icon"]
|
|
}'>
|
|
<thead>
|
|
<tr role="row">
|
|
<th class="col-sm-1">{{ trans('admin/companies/table.title') }}</th>
|
|
<th class="col-sm-1">{{ trans('admin/licenses/table.title') }}</th>
|
|
<th class="col-sm-1">{{ trans('admin/licenses/form.license_key') }}</th>
|
|
<th class="col-sm-1">{{ trans('admin/licenses/form.seats') }}</th>
|
|
<th class="col-sm-1">{{ trans('admin/licenses/form.remaining_seats') }}</th>
|
|
<th class="col-sm-1">{{ trans('admin/licenses/form.expiration') }}</th>
|
|
<th class="col-sm-1">{{ trans('general.purchase_date') }}</th>
|
|
<th class="col-sm-1 text-right" class="col-sm-1">{{ trans('general.purchase_cost') }}</th>
|
|
<th class="col-sm-1">{{ trans('general.depreciation') }}</th>
|
|
<th class="col-sm-1 text-right">{{ trans('admin/hardware/table.book_value') }}</th>
|
|
<th class="col-sm-1 text-right">{{ trans('admin/hardware/table.diff') }}</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
@foreach ($licenses as $license)
|
|
<tr>
|
|
<td>{{ is_null($license->company) ? '' : $license->company->name }}</td>
|
|
<td>{{ $license->name }}</td>
|
|
<td>
|
|
@can('viewKeys', $license)
|
|
{{ $license->serial }}
|
|
@else
|
|
------------
|
|
@endcan
|
|
</td>
|
|
<td>{{ $license->seats }}</td>
|
|
<td>{{ $license->remaincount() }}</td>
|
|
<td>{{ $license->expiration_date }}</td>
|
|
<td>{{ $license->purchase_date }}</td>
|
|
<td class="text-right">
|
|
{{ $snipeSettings->default_currency }}{{ \App\Helpers\Helper::formatCurrencyOutput($license->purchase_cost) }}
|
|
</td>
|
|
<td>
|
|
{{ ($license->depreciation) ? e($license->depreciation->name).' ('.$license->depreciation->months.' '.trans('general.months').')' : '' }}
|
|
</td>
|
|
<td class="text-right">
|
|
{{ $snipeSettings->default_currency }}{{ \App\Helpers\Helper::formatCurrencyOutput($license->getDepreciatedValue()) }}
|
|
</td>
|
|
<td class="text-right">
|
|
-{{ $snipeSettings->default_currency }}{{ \App\Helpers\Helper::formatCurrencyOutput(($license->purchase_cost - $license->getDepreciatedValue())) }}
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div> <!-- /.table-responsive-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|
|
|
|
@section('moar_scripts')
|
|
@include ('partials.bootstrap-table')
|
|
@stop
|