mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Added purchase order and order number to user > licenses view
This commit is contained in:
parent
f9dcf0783a
commit
4882b01787
|
@ -423,8 +423,10 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th class="col-md-5">{{ trans('general.name') }}</th>
|
||||
<th class="col-md-6">{{ trans('admin/hardware/form.serial') }}</th>
|
||||
<th class="col-md-6" data-footer-formatter="sumFormatter" data-fieldname="purchase_cost">{{ trans('general.purchase_cost') }}</th>
|
||||
<th>{{ trans('admin/hardware/form.serial') }}</th>
|
||||
<th data-footer-formatter="sumFormatter" data-fieldname="purchase_cost">{{ trans('general.purchase_cost') }}</th>
|
||||
<th>{{ trans('admin/licenses/form.purchase_order') }}</th>
|
||||
<th>{{ trans('general.order_number') }}</th>
|
||||
<th class="col-md-1 hidden-print">{{ trans('general.action') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -442,7 +444,13 @@
|
|||
@endcan
|
||||
</td>
|
||||
<td class="col-md-2">
|
||||
{!! $license->purchase_cost !!}
|
||||
{{ $license->purchase_cost }}
|
||||
</td>
|
||||
<td>
|
||||
{{ $license->purchase_order }}
|
||||
</td>
|
||||
<td>
|
||||
{{ $license->order_number }}
|
||||
</td>
|
||||
<td class="hidden-print col-md-2">
|
||||
@can('update', $license)
|
||||
|
|
Loading…
Reference in a new issue