mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Port asset history importer to league/csv9 (#5972)
This commit is contained in:
parent
9618878023
commit
49d95892e3
|
@ -573,9 +573,8 @@ class AssetsController extends Controller
|
||||||
$csv = Reader::createFromPath(Input::file('user_import_csv'));
|
$csv = Reader::createFromPath(Input::file('user_import_csv'));
|
||||||
$csv->setNewline("\r\n");
|
$csv->setNewline("\r\n");
|
||||||
//get the first row, usually the CSV header
|
//get the first row, usually the CSV header
|
||||||
//$headers = $csv->fetchOne();
|
$csv->setHeaderOffset(0);
|
||||||
|
$results = $csv->getRecords();
|
||||||
$results = $csv->fetchAssoc();
|
|
||||||
$item = array();
|
$item = array();
|
||||||
$status = array();
|
$status = array();
|
||||||
$status['error'] = array();
|
$status['error'] = array();
|
||||||
|
|
Loading…
Reference in a new issue