Added import for storelocations

This commit is contained in:
Jan Böhmer 2023-03-24 22:51:41 +01:00
parent 34aefd32e8
commit 1ca839ab26
3 changed files with 37 additions and 17 deletions

View file

@ -99,6 +99,10 @@ class ImportPartKeeprCommand extends Command
$io->info('Importing Footprints...');
$count = $this->importer->importFootprints($data);
$io->success('Imported '.$count.' footprints.');
$io->info('Importing storage locations...');
$count = $this->importer->importStorelocations($data);
$io->success('Imported '.$count.' storage locations.');
}
}