diff options
| author | Mark Wells <mark@freeside.biz> | 2013-07-22 18:07:58 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2013-07-22 18:07:58 -0700 |
| commit | 3639f310be1be6953fe04b4da9296f6cdedb27d9 (patch) | |
| tree | 2dfab84459a9ca92a26a26a6137994862a271e3e /FS | |
| parent | 79be33a1c66fd9ba7d2da685b3a487fff172c252 (diff) | |
change behavior of disable_cron_billing option, #19873
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/Cron/bill.pm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/FS/FS/Cron/bill.pm b/FS/FS/Cron/bill.pm index 8dc2add19..df4b6e7df 100644 --- a/FS/FS/Cron/bill.pm +++ b/FS/FS/Cron/bill.pm @@ -41,9 +41,10 @@ sub bill { #$FS::cust_event::DEBUG = $opt{'l'} if $opt{'l'}; my $conf = new FS::Conf; + my $disable_bill = 0; if ( $conf->exists('disable_cron_billing') ) { warn "disable_cron_billing set, skipping billing\n" if $debug; - return; + $disable_bill = 1; } #we're at now now (and later). @@ -127,7 +128,11 @@ sub bill { } else { my $cust_main = qsearchs( 'cust_main', { 'custnum' => $custnum } ); - $cust_main->bill_and_collect( %args, 'debug' => $debug ); + if ( $disable_bill ) { + $cust_main->collect( %args, 'debug' => $debug ); + } else { + $cust_main->bill_and_collect( %args, 'debug' => $debug ); + } } |
