From: ivan Date: Tue, 21 Apr 2009 16:42:26 +0000 (+0000) Subject: yow. fix fallout from cust_main.archived stuff causing nothing to bill. RT#4412 X-Git-Tag: freeside_1_7_4rc1~55 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=eaa5b51133cff4062ef1253582f50487561cfbac;p=freeside.git yow. fix fallout from cust_main.archived stuff causing nothing to bill. RT#4412 --- diff --git a/FS/FS/Cron/bill.pm b/FS/FS/Cron/bill.pm index 5c0a5da59..c1cfbae5e 100644 --- a/FS/FS/Cron/bill.pm +++ b/FS/FS/Cron/bill.pm @@ -24,7 +24,7 @@ sub bill { my @search = (); - push @search, "cust_main.archived != 'Y' "; #disable? + push @search, "( cust_main.archived != 'Y' OR archived IS NULL )"; #disable? push @search, "cust_main.payby = '". $opt{'p'}. "'" if $opt{'p'};