mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Fix design inconsistency between assets and assigned assets in Print All Assigned report
This commit is contained in:
parent
5364838fc0
commit
d9a53460ff
|
@ -151,20 +151,25 @@
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ $counter }}.{{ $assignedCounter }}</td>
|
<td>{{ $counter }}.{{ $assignedCounter }}</td>
|
||||||
<td data-formatter="imageFormatter">
|
<td>
|
||||||
@if ($asset->getImageUrl())
|
@if ($asset->getImageUrl())
|
||||||
<img src="{{ $asset->getImageUrl() }}" class="thumbnail" style="max-height: 50px;">
|
<img src="{{ $asset->getImageUrl() }}" class="thumbnail" style="max-height: 50px;">
|
||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td>{{ $asset->asset_tag }}</td>
|
<td>{{ $asset->asset_tag }}</td>
|
||||||
<td>{{ $asset->name }}</td>
|
<td>{{ $asset->name }}</td>
|
||||||
<td>{{ $asset->model->category->name }}</td>
|
<td>{{ (($asset->model) && ($asset->model->category)) ? $asset->model->category->name : trans('general.invalid_category') }}</td>
|
||||||
|
<td>{{ ($asset->model) ? $asset->model->name : trans('general.invalid_model') }}</td>
|
||||||
<td>{{ ($asset->defaultLoc) ? $asset->defaultLoc->name : '' }}</td>
|
<td>{{ ($asset->defaultLoc) ? $asset->defaultLoc->name : '' }}</td>
|
||||||
<td>{{ ($asset->location) ? $asset->location->name : '' }}</td>
|
<td>{{ ($asset->location) ? $asset->location->name : '' }}</td>
|
||||||
<td>{{ $asset->model->name }}</td>
|
|
||||||
<td>{{ $asset->serial }}</td>
|
<td>{{ $asset->serial }}</td>
|
||||||
<td>{{ $asset->last_checkout }}</td>
|
<td>
|
||||||
<td><img style="width:auto;height:100px;" src="{{ asset('/') }}display-sig/{{ $asset->assetlog->first()->accept_signature }}"></td>
|
{{ Helper::getFormattedDateObject($asset->last_checkout, 'datetime', false) }}</td>
|
||||||
|
<td>
|
||||||
|
@if (($asset->assetlog->first()) && ($asset->assetlog->first()->accept_signature!=''))
|
||||||
|
<img style="width:auto;height:100px;" src="{{ asset('/') }}display-sig/{{ $asset->assetlog->first()->accept_signature }}">
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
@php
|
@php
|
||||||
$assignedCounter++
|
$assignedCounter++
|
||||||
|
|
Loading…
Reference in a new issue