mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Merge pull request #12617 from kenchan0130/patch-12249
Fixed #12249: fix csv importer for serial_number field
This commit is contained in:
commit
1ccedf6426
|
@ -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 number');
|
$this->item['serial'] = $this->findCsvMatch($row, 'serial');
|
||||||
// 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');
|
||||||
|
|
Loading…
Reference in a new issue