Fix issues found during testing. #773

This commit is contained in:
Korina Cordero 2023-11-10 13:35:49 +08:00
parent 005f891057
commit 91edfa6ef0

View file

@ -46,6 +46,8 @@ class SetJobOrderCustNewCommand extends Command
$all_jo_results = $all_query_stmt->fetchAll(); $all_jo_results = $all_query_stmt->fetchAll();
$output->writeln('Processing job orders...');
foreach ($all_jo_results as $jo_row) foreach ($all_jo_results as $jo_row)
{ {
// for each jo id, get the customer id // for each jo id, get the customer id
@ -60,6 +62,8 @@ class SetJobOrderCustNewCommand extends Command
$this->updateCustNew($db, $jo_id); $this->updateCustNew($db, $jo_id);
} }
$output->writeln('All done!');
return 0; return 0;
} }