Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2020-11-24 16:06:01 -08:00
commit bf1f8659cb

View file

@ -88,11 +88,13 @@ class ImportLocations extends Command
if (array_key_exists('Parent Name', $row)) { if (array_key_exists('Parent Name', $row)) {
$parent_name = trim($row['Parent Name']); $parent_name = trim($row['Parent Name']);
} else {
$parent_name = null;
} }
// Set the location attributes to save // Set the location attributes to save
if (array_key_exists('Name', $row)) { if (array_key_exists('Name', $row)) {
$location = Location::firstOrNew(array('name' => trim($row['Name']))); $location = Location::firstOrCreate(array('name' => trim($row['Name'])));
$location->name = trim($row['Name']); $location->name = trim($row['Name']);
$this->info('Checking location: '.$location->name); $this->info('Checking location: '.$location->name);
} else { } else {