Add source to invoice criteria. Modify invoice rules to get service fees from... #1701

Merged
arcticzero merged 217 commits from 746-resq-2-0-final into master 2023-11-22 08:54:48 +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;
}