Only show importer progress if on command line. It broke error display from web.
This commit is contained in:
parent
8c00bad6d0
commit
d6dd449445
1 changed files with 10 additions and 4 deletions
|
@ -103,8 +103,10 @@ class ObjectImportCommand extends Command {
|
||||||
$this->accessories = Accessory::All(['name']);
|
$this->accessories = Accessory::All(['name']);
|
||||||
$this->consumables = Consumable::All(['name']);
|
$this->consumables = Consumable::All(['name']);
|
||||||
$this->customfields = CustomField::All(['name']);
|
$this->customfields = CustomField::All(['name']);
|
||||||
|
$bar = NULL;
|
||||||
$bar = $this->output->createProgressBar(count($newarray));
|
if(!$this->option('web-importer')) {
|
||||||
|
$bar = $this->output->createProgressBar(count($newarray));
|
||||||
|
}
|
||||||
// Loop through the records
|
// Loop through the records
|
||||||
DB::transaction(function() use (&$newarray, $bar){
|
DB::transaction(function() use (&$newarray, $bar){
|
||||||
Model::unguard();
|
Model::unguard();
|
||||||
|
@ -180,12 +182,16 @@ class ObjectImportCommand extends Command {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$bar->advance();
|
if(!$this->option('web-importer')) {
|
||||||
|
$bar->advance();
|
||||||
|
}
|
||||||
$this->log('------------- Action Summary ----------------');
|
$this->log('------------- Action Summary ----------------');
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$bar->finish();
|
if(!$this->option('web-importer')) {
|
||||||
|
$bar->finish();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$this->log('=====================================');
|
$this->log('=====================================');
|
||||||
|
|
Loading…
Add table
Reference in a new issue