X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FAction%2Fpkg_discount.pm;h=592e04410e4e9496a45709d4c1280f93ffde911b;hp=04a3a0f402c751ac6a7e2df17f1a5c9df401a474;hb=6e3c1b8915c39e82a9a1ac48acc5b0c360daadb7;hpb=7215be1e51349bdfeed60d6e2f42587a4928f393 diff --git a/FS/FS/part_event/Action/pkg_discount.pm b/FS/FS/part_event/Action/pkg_discount.pm index 04a3a0f40..592e04410 100644 --- a/FS/FS/part_event/Action/pkg_discount.pm +++ b/FS/FS/part_event/Action/pkg_discount.pm @@ -3,7 +3,7 @@ package FS::part_event::Action::pkg_discount; use strict; use base qw( FS::part_event::Action ); -sub description { "Discount active customer packages"; } +sub description { "Discount unsuspended customer packages (monthly recurring only)"; } sub eventtable_hashref { { 'cust_main' => 1 }; @@ -41,10 +41,12 @@ sub do_action { my $cust_main = $self->cust_main($object); my %if_pkgpart = map { $_=>1 } split(/\s*,\s*/, $self->option('if_pkgpart') ); - my @cust_pkg = grep { $if_pkgpart{ $_->pkgpart } && $_->part_pkg->freq + my $allpkgs = (keys %if_pkgpart) ? 0 : 1; + my @cust_pkg = grep { ( $allpkgs || $if_pkgpart{ $_->pkgpart } ) + && $_->part_pkg->freq #can remove after fixing discount bug with non-monthly pkgs && ( $_->part_pkg->freq =~ /^\d+$/) } - $cust_main->active_pkgs; + $cust_main->unsuspended_pkgs; return 'No qualifying packages' unless @cust_pkg; my $gotit = 0;