c6f37265ae411bc97ebc638d98e5dd092262cb71
[freeside.git] / FS / FS / part_event / Action / cust_bill_fee_percent.pm
1 package FS::part_event::Action::cust_bill_fee_percent;
2
3 use strict;
4 use base qw( FS::part_event::Action );
5
6 sub description { 'Late fee (percentage of invoice)'; }
7
8 sub eventtable_hashref {
9   { 'cust_bill' => 1 };
10 }
11
12 sub option_fields {
13   ( 
14     'percent'  => { label=>'Percent', size=>2, },
15     'reason'   => 'Reason',
16     'taxclass' => { label=>'Tax class', type=>'select-taxclass', },
17   );
18 }
19
20 sub default_weight { 10; }
21
22 sub do_action {
23   my( $self, $cust_bill ) = @_;
24
25   #my $cust_main = $self->cust_main($cust_bill);
26   my $cust_main = $cust_bill->cust_main;
27
28   my $amount =
29     sprintf('%.2f', $cust_bill->owed * $self->option('percent') / 100 );
30
31   my $error = $cust_main->charge( {
32     'amount'     => $amount,
33     'pkg'        => $self->option('reason'),
34     'taxclass'   => $self->option('taxclass'),
35     #'start_date' => $cust_main->next_bill_date, #unless its more than N months away?
36   } );
37
38   die $error if $error;
39
40   '';
41 }
42
43 1;