Resolve "Add a dropdown box in Customer Information to indicate if customer is new/old" #1694

Merged
korina.cordero merged 8 commits from 773-add-a-dropdown-box-in-customer-information-to-indicate-if-customer-is-new-old into 746-resq-2-0-final 2023-11-10 05:47:06 +00:00
Showing only changes of commit 91edfa6ef0 - Show all commits

View file

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