X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FAction%2Fcust_bill_fee_percent.pm;h=9206c6a33dec30cdbd78b9c11e319124fbdcf218;hb=7aad2eb29c444625fd1130f4ed37d89a7da2c027;hp=100fc8bc394ddc868bf7321ba548722ad9c6c0ea;hpb=eb4ff7f73c5d4bdf74a3472448b5a195598ff4cd;p=freeside.git diff --git a/FS/FS/part_event/Action/cust_bill_fee_percent.pm b/FS/FS/part_event/Action/cust_bill_fee_percent.pm index 100fc8bc3..9206c6a33 100644 --- a/FS/FS/part_event/Action/cust_bill_fee_percent.pm +++ b/FS/FS/part_event/Action/cust_bill_fee_percent.pm @@ -3,24 +3,24 @@ package FS::part_event::Action::cust_bill_fee_percent; use strict; use base qw( FS::part_event::Action ); -sub description { - 'Late fee (percentage of invoice)'; -} +sub description { 'Late fee (percentage of invoice)'; } sub eventtable_hashref { { 'cust_bill' => 1 }; } +sub event_stage { 'pre-bill'; } + sub option_fields { ( - 'percent' => { label=>'Percent', size=>2, }, - 'reason' => 'Reason', + 'percent' => { label=>'Percent', size=>2, }, + 'reason' => 'Reason', + 'taxclass' => { label=>'Tax class', type=>'select-taxclass', }, + 'nextbill' => { label=>'Hold late fee until next invoice', type=>'checkbox', value=>'Y' }, ); } -sub default_weight { - 10; -} +sub default_weight { 10; } sub do_action { my( $self, $cust_bill ) = @_; @@ -28,10 +28,20 @@ sub do_action { #my $cust_main = $self->cust_main($cust_bill); my $cust_main = $cust_bill->cust_main; - my $error = $cust_main->charge( - sprintf('%.2f', $cust_bill->owed * $self->option('percent') / 100 ), - $self->option('reason') + my $amount = + sprintf('%.2f', $cust_bill->owed * $self->option('percent') / 100 ); + + my %charge = ( + 'amount' => $amount, + 'pkg' => $self->option('reason'), + 'taxclass' => $self->option('taxclass'), ); + + $charge{'start_date'} = $cust_main->next_bill_date #unless its more than N months away? + if $self->option('nextbill'); + + my $error = $cust_main->charge( \%charge ); + die $error if $error; '';