X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2FCron%2Fbill.pm;h=19baac062add8e37dcb0287a0b03b8ffa0eb6c75;hb=20f03d52cc6c930f610c0b4466eeeeda54fdbb40;hp=98f1c2e6f425ca6b96abf2acf103b2d5e27adfc9;hpb=6b28d0bd4b422d0fff32b559d0785665b1c46b27;p=freeside.git diff --git a/FS/FS/Cron/bill.pm b/FS/FS/Cron/bill.pm index 98f1c2e6f..19baac062 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 { @@ -123,6 +127,12 @@ sub bill { 'priority' => 99, #don't get in the way of provisioning jobs }; 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); + } } @@ -132,7 +142,12 @@ sub bill { if ( $disable_bill ) { $cust_main->collect( %args, 'debug' => $debug ); } else { - $cust_main->bill_and_collect( %args, 'debug' => $debug ); + my $error = $cust_main->bill_and_collect( %args, 'fatal' => 'return', + 'debug' => $debug, ); + if ( $error ) { + $log->error($error); + warn $error; #die $error; + } } } @@ -161,8 +176,6 @@ sub bill { # with today's date, regardless of the pretend date used to pre-generate # the invoices. # -# -p: Only process customers with the specified payby (I, I, I, I, I, I, I) -# # -a: Only process customers with the specified agentnum # # -v: enable debugging @@ -190,8 +203,6 @@ sub bill_where { push @search, "( cust_main.archived != 'Y' OR archived IS NULL )"; #disable? - push @search, "cust_main.payby = '". $opt{'p'}. "'" - if $opt{'p'}; push @search, "cust_main.agentnum IN ( ". $opt{'a'}. " ) " if $opt{'a'};