package FS::part_event::Action::pkg_discount; use strict; use base qw( FS::part_event::Action ); sub description { "Discount unsuspended customer packages (monthly recurring only)"; } sub eventtable_hashref { { 'cust_main' => 1 }; } sub event_stage { 'pre-bill'; } sub option_fields { ( 'if_pkgpart' => { 'label' => 'Only packages', 'type' => 'select-table', 'table' => 'part_pkg', 'name_col' => 'pkg', #can tweak after fixing discount bug with non-monthly recurring pkgs 'extra_sql' => q(AND freq NOT LIKE '0%' AND freq NOT LIKE '%d' AND freq NOT LIKE '%h' AND freq NOT LIKE '%w'), 'multiple' => 1, }, 'discountnum' => { 'label' => 'Discount', 'type' => 'select-table', #we don't handle the select-discount create a discount case 'table' => 'discount', 'name_col' => 'description', #well, method 'order_by' => 'ORDER BY discountnum', #requied because name_col is a method 'hashref' => { 'disabled' => '', 'months' => { op=>'!=', value=>'0' }, }, 'disable_empty' => 1, }, ); } #lots of false laziness with referral_pkg_discount #but also lots of doing it differently...and better??? sub do_action { my( $self, $object, $cust_event ) = @_; my $cust_main = $self->cust_main($object); my %if_pkgpart = map { $_=>1 } split(/\s*,\s*/, $self->option('if_pkgpart') ); 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->unsuspended_pkgs; return 'No qualifying packages' unless @cust_pkg; my $gotit = 0; foreach my $cust_pkg (@cust_pkg) { my @cust_pkg_discount = $cust_pkg->cust_pkg_discount_active; #our logic here only makes sense insomuch as you can't have multiple discounts die "Unexpected multiple discounts, contact developers" if scalar(@cust_pkg_discount) > 1; my @my_cust_pkg_discount = grep { $_->discountnum == $self->option('discountnum') } @cust_pkg_discount; if ( @my_cust_pkg_discount ) { #reset the existing one instead $gotit = 1; #it's already got this discount and discount never expires--great, move on next unless $cust_pkg_discount[0]->discount->months; #reset the discount my $error = $cust_pkg_discount[0]->decrement_months_used( $cust_pkg_discount[0]->months_used ); die "Error extending discount: $error\n" if $error; } elsif ( @cust_pkg_discount ) { #can't currently discount an already discounted package, #but maybe we can discount a different package next; } else { #normal case, create a new one $gotit = 1; my $cust_pkg_discount = new FS::cust_pkg_discount { 'pkgnum' => $cust_pkg->pkgnum, 'discountnum' => $self->option('discountnum'), 'months_used' => 0 }; my $error = $cust_pkg_discount->insert; die "Error discounting package: $error\n" if $error; } } return $gotit ? '' : 'Discount not applied due to existing discounts'; } 1;