Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
afb7fa2e81
3 changed files with 5 additions and 2 deletions
|
@ -56,7 +56,7 @@ abstract class Importer
|
||||||
'reassignable' => 'reassignable',
|
'reassignable' => 'reassignable',
|
||||||
'requestable' => 'requestable',
|
'requestable' => 'requestable',
|
||||||
'seats' => 'seats',
|
'seats' => 'seats',
|
||||||
'serial_number' => 'serial number',
|
'serial' => 'serial number',
|
||||||
'status' => 'status',
|
'status' => 'status',
|
||||||
'supplier' => 'supplier',
|
'supplier' => 'supplier',
|
||||||
'termination_date' => 'termination date',
|
'termination_date' => 'termination date',
|
||||||
|
|
|
@ -90,7 +90,7 @@ class ItemImporter extends Importer
|
||||||
$this->item['qty'] = $this->findCsvMatch($row, 'quantity');
|
$this->item['qty'] = $this->findCsvMatch($row, 'quantity');
|
||||||
$this->item['requestable'] = $this->findCsvMatch($row, 'requestable');
|
$this->item['requestable'] = $this->findCsvMatch($row, 'requestable');
|
||||||
$this->item['user_id'] = $this->user_id;
|
$this->item['user_id'] = $this->user_id;
|
||||||
$this->item['serial'] = $this->findCsvMatch($row, 'serial');
|
$this->item['serial'] = $this->findCsvMatch($row, 'serial number');
|
||||||
// NO need to call this method if we're running the user import.
|
// NO need to call this method if we're running the user import.
|
||||||
// TODO: Merge these methods.
|
// TODO: Merge these methods.
|
||||||
$this->item['checkout_class'] = $this->findCsvMatch($row, 'checkout_class');
|
$this->item['checkout_class'] = $this->findCsvMatch($row, 'checkout_class');
|
||||||
|
|
|
@ -908,6 +908,9 @@
|
||||||
<th class="col-sm-3" data-field="created_at" data-formatter="dateDisplayFormatter" data-sortable="true">{{ trans('general.date') }}</th>
|
<th class="col-sm-3" data-field="created_at" data-formatter="dateDisplayFormatter" data-sortable="true">{{ trans('general.date') }}</th>
|
||||||
<th class="col-sm-2" data-field="admin" data-formatter="usersLinkObjFormatter">{{ trans('general.admin') }}</th>
|
<th class="col-sm-2" data-field="admin" data-formatter="usersLinkObjFormatter">{{ trans('general.admin') }}</th>
|
||||||
<th class="col-sm-2" data-field="action_type">{{ trans('general.action') }}</th>
|
<th class="col-sm-2" data-field="action_type">{{ trans('general.action') }}</th>
|
||||||
|
@if ($snipeSettings->require_accept_signature=='1')
|
||||||
|
<th class="col-md-3" data-field="signature_file" data-visible="false" data-formatter="imageFormatter">{{ trans('general.signature') }}</th>
|
||||||
|
@endif
|
||||||
<th class="col-sm-3" data-field="item" data-formatter="polymorphicItemFormatter">{{ trans('general.item') }}</th>
|
<th class="col-sm-3" data-field="item" data-formatter="polymorphicItemFormatter">{{ trans('general.item') }}</th>
|
||||||
<th class="col-sm-2" data-field="target" data-formatter="polymorphicItemFormatter">{{ trans('general.target') }}</th>
|
<th class="col-sm-2" data-field="target" data-formatter="polymorphicItemFormatter">{{ trans('general.target') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Add table
Reference in a new issue