Fixed consumable item_no import field
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
1a1120220c
commit
54f2b62294
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ class ItemImporter extends Importer
|
|||
$this->item['requestable'] = $this->findCsvMatch($row, 'requestable');
|
||||
$this->item['created_by'] = auth()->id();
|
||||
$this->item['serial'] = $this->findCsvMatch($row, 'serial');
|
||||
$this->item['item_no'] = trim($this->findCsvMatch($row, 'item_number'));
|
||||
$this->item['item_no'] = trim($this->findCsvMatch($row, 'item_no'));
|
||||
|
||||
|
||||
$this->item['purchase_date'] = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue