Fixed consumable item_no import field

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2025-04-18 00:55:56 +01:00
parent 1a1120220c
commit 54f2b62294

View file

@ -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;