X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_main%2FPackages.pm;h=c75b99f10375d0c9868a1b5ab45b1aaccbdc3204;hb=a10881a4daca69112f2bd18bce0c57b934a6fefa;hp=4b44fdd5db004ad04524fdfa260e87b25feddf5c;hpb=5e4b86a7f3d7dfecc307bb96b3ea3ca7abb468ae;p=freeside.git diff --git a/FS/FS/cust_main/Packages.pm b/FS/FS/cust_main/Packages.pm index 4b44fdd5d..c75b99f10 100644 --- a/FS/FS/cust_main/Packages.pm +++ b/FS/FS/cust_main/Packages.pm @@ -395,16 +395,32 @@ sub active_pkgs { $self->unsuspended_pkgs; } +=item billing_pkgs + +Returns active packages, and also any suspended packages which are set to +continue billing while suspended. + +=cut + +sub billing_pkgs { + my $self = shift; + grep { my $part_pkg = $_->part_pkg; + $part_pkg->freq ne '' && $part_pkg->freq ne '0' + && ( ! $_->susp || $part_pkg->option('suspend_bill', 1) ); + } + $self->ncancelled_pkgs; +} + =item next_bill_date Returns the next date this customer will be billed, as a UNIX timestamp, or -undef if no active package has a next bill date. +undef if no billing package has a next bill date. =cut sub next_bill_date { my $self = shift; - min( map $_->get('bill'), grep $_->get('bill'), $self->active_pkgs ); + min( map $_->get('bill'), grep $_->get('bill'), $self->billing_pkgs ); } =item num_cancelled_pkgs