From 9393572515459abd1e357e2a8818d16834c23b82 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 1 Mar 2003 03:14:13 +0000 Subject: [PATCH] change next bill date comparison from < to <= --- FS/FS/cust_main.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 7045f96d2..f8578f901 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -973,7 +973,7 @@ sub bill { my $sdate; if ( $part_pkg->getfield('freq') > 0 && ! $cust_pkg->getfield('susp') && - ( $cust_pkg->getfield('bill') || 0 ) < $time + ( $cust_pkg->getfield('bill') || 0 ) <= $time ) { my $recur_prog = $part_pkg->getfield('recur'); $recur_prog =~ /^(.*)$/ or do { -- 2.20.1