X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FAction%2Fcust_bill_fee_percent.pm;h=48daf15e3479a490d891892ac7e09f17cda21141;hb=25f16a9668fba4e652372228ca55789ce50e2fa8;hp=570fd63165c1322bc9583b70526f3a4c28e6fe03;hpb=58f99accce35aa76abe9ff852f6c6ee84e8ce712;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 570fd6316..48daf15e3 100644 --- a/FS/FS/part_event/Action/cust_bill_fee_percent.pm +++ b/FS/FS/part_event/Action/cust_bill_fee_percent.pm @@ -1,7 +1,8 @@ package FS::part_event::Action::cust_bill_fee_percent; use strict; -use base qw( FS::part_event::Action ); +use base qw( FS::part_event::Action::fee ); +use Tie::IxHash; sub description { 'Late fee (percentage of invoice)'; } @@ -10,27 +11,18 @@ sub eventtable_hashref { } sub option_fields { - ( - 'percent' => { label=>'Percent', size=>2, }, - 'reason' => 'Reason', - ); -} - -sub default_weight { 10; } - -sub do_action { - my( $self, $cust_bill ) = @_; + my $class = shift; - #my $cust_main = $self->cust_main($cust_bill); - my $cust_main = $cust_bill->cust_main; + my $t = tie my %option_fields, 'Tie::IxHash', $class->SUPER::option_fields(); + $t->Shift; #assumes charge is first + $t->Unshift( 'percent' => { label=>'Percent', size=>2, } ); - my $error = $cust_main->charge( - sprintf('%.2f', $cust_bill->owed * $self->option('percent') / 100 ), - $self->option('reason') - ); - die $error if $error; + %option_fields; +} - ''; +sub _calc_fee { + my( $self, $cust_bill ) = @_; + sprintf('%.2f', $cust_bill->owed * $self->option('percent') / 100 ); } 1;