X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FCron%2Fbill.pm;h=813c0befe1335d92fe155fcf9582b7f80e6e4ff0;hb=95ea28727a29f53f945dd0c68fda95ec1f6e4560;hp=caedcd3c1044751809ccf86fc56e1b96239008c0;hpb=5d91b30cc8fddf6b8f013b4ff81917a9b32f6378;p=freeside.git diff --git a/FS/FS/Cron/bill.pm b/FS/FS/Cron/bill.pm index caedcd3c1..813c0befe 100644 --- a/FS/FS/Cron/bill.pm +++ b/FS/FS/Cron/bill.pm @@ -22,7 +22,8 @@ use FS::Log; # -s: re-charge setup fees # -v: enable debugging # -l: debugging level -# -m: Experimental multi-process mode uses the job queue for multi-process and/or multi-machine billing. +# -m: Multi-process mode uses the job queue for multi-process and/or multi-machine billing. +# -q: Multi-process mode: queue additional job instead of skipping # -r: Multi-process mode dry run option # -g: Don't bill these pkgparts @@ -109,12 +110,15 @@ sub bill { warn "DRY RUN: would add custnum $custnum for queued_bill\n"; } else { + my @waiting = qsearch( 'queue', { + 'job' => 'FS::cust_main::queued_bill', + 'custnum' => $custnum, + 'status' => 'new', + } + ); + #avoid queuing another job if there's one still waiting to run - next if qsearch( 'queue', { 'job' => 'FS::cust_main::queued_bill', - 'custnum' => $custnum, - 'status' => 'new', - } - ); + next if @waiting && ! $opt{'q'}; #add job to queue that calls bill_and_collect with options my $queue = new FS::queue { @@ -124,6 +128,12 @@ sub bill { }; my $error = $queue->insert( 'custnum'=>$custnum, %args ); die $error if $error; + + #wait until the earler jobs complete + foreach my $waiting_queue (@waiting) { + $queue->depend_insert($waiting_queue->jobnum); + } + } } else {