diff options
Diffstat (limited to 'FS')
| -rw-r--r-- | FS/FS/cust_main.pm | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index becb9054b..8cd03ebc6 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -2857,9 +2857,10 @@ sub _make_lines {    my $recur = 0;    my $unitrecur = 0;    my $sdate; -  if ( ! $cust_pkg->getfield('susp') and -           ( $part_pkg->getfield('freq') ne '0' && -             ( $cust_pkg->getfield('bill') || 0 ) <= $time +  if (     ! $cust_pkg->get('susp') +       and ! $cust_pkg->get('start_date') +       and ( $part_pkg->getfield('freq') ne '0' +             && ( $cust_pkg->getfield('bill') || 0 ) <= $time             )          || ( $part_pkg->plan eq 'voip_cdr'                && $part_pkg->option('bill_every_call')  | 
