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=0f7643c1af2d909e0c3172e5bec0c01855fca1b9;hp=100fc8bc394ddc868bf7321ba548722ad9c6c0ea;hpb=9509e5bfb7f9331303153cac24d7bfecbe2ea9f1;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..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,40 +1,28 @@ 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)'; -} +sub description { 'Late fee (percentage of invoice)'; } sub eventtable_hashref { { 'cust_bill' => 1 }; } sub option_fields { - ( - 'percent' => { label=>'Percent', size=>2, }, - 'reason' => 'Reason', - ); -} + my $class = shift; + + 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, } ); -sub default_weight { - 10; + %option_fields; } -sub do_action { +sub _calc_fee { my( $self, $cust_bill ) = @_; - - #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') - ); - die $error if $error; - - ''; + sprintf('%.2f', $cust_bill->owed * $self->option('percent') / 100 ); } 1;