Added basic import for parts

This commit is contained in:
Jan Böhmer 2023-03-24 23:43:05 +01:00
parent 1ca839ab26
commit 21c74fbcc8
2 changed files with 124 additions and 3 deletions

View file

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