summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Medley <bpm@snafu.org>2012-04-20 09:58:25 -0500
committerBrian Medley <bpm@snafu.org>2012-04-20 11:41:21 -0500
commita1e10e63935c5e561252b1defe4e16688ba54b4d (patch)
treec5f079bfc33af8d0581117659ddaa4b63aa48057
parent15a62244adb4e09e8f3d85998fb7bd35ce6ef148 (diff)
new fee either flat or percentage based, #17319
-rw-r--r--FS/FS/part_event/Action/cust_bill_fee_greater_percent_or_flat.pm41
1 files changed, 41 insertions, 0 deletions
diff --git a/FS/FS/part_event/Action/cust_bill_fee_greater_percent_or_flat.pm b/FS/FS/part_event/Action/cust_bill_fee_greater_percent_or_flat.pm
new file mode 100644
index 000000000..13f886ab1
--- /dev/null
+++ b/FS/FS/part_event/Action/cust_bill_fee_greater_percent_or_flat.pm
@@ -0,0 +1,41 @@
+package FS::part_event::Action::cust_bill_fee_greater_percent_or_flat;
+
+use strict;
+use base qw( FS::part_event::Action::fee );
+use Tie::IxHash;
+
+sub description { 'Late fee (greater of percentage of invoice or flat fee)'; }
+
+sub eventtable_hashref {
+ { 'cust_bill' => 1 };
+}
+
+sub option_fields {
+ my $class = shift;
+
+ my $t = tie my %option_fields, 'Tie::IxHash', $class->SUPER::option_fields();
+ $t->Shift; #assumes charge is first
+ $t->Unshift( 'flat_fee' => { label=>'Flat Fee', type=>'money', } );
+ $t->Unshift( 'percent' => { label=>'Percent', size=>2, } );
+
+ %option_fields;
+}
+
+sub _calc_fee {
+ my( $self, $cust_bill ) = @_;
+ my $percent = sprintf('%.2f', $cust_bill->owed * $self->option('percent') / 100 );
+ my $flat_fee = $self->option('flat_fee');
+
+ my $num = $flat_fee - $percent;
+ if ($num == 0) {
+ return($percent);
+ }
+ elsif ($num > 0) {
+ return($flat_fee);
+ }
+ else {
+ return($percent);
+ }
+}
+
+1;