summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2014-04-24 20:24:01 -0700
committerMark Wells <mark@freeside.biz>2014-04-24 20:24:01 -0700
commit41b1a4d9e2cf8270f3e4d0b8d5ac02b875b46f0c (patch)
tree55e79eaafd936ec046c8c1af74b68ca77aa87d8f /FS/FS/part_event/Action
parentf697781408c7e1b27d7bab73095d707e9c50933e (diff)
allow fees to be charged based on batch payment attempts, #27778
Diffstat (limited to 'FS/FS/part_event/Action')
-rw-r--r--FS/FS/part_event/Action/cust_fee.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/part_event/Action/cust_fee.pm b/FS/FS/part_event/Action/cust_fee.pm
index 9373091..27ca2a1 100644
--- a/FS/FS/part_event/Action/cust_fee.pm
+++ b/FS/FS/part_event/Action/cust_fee.pm
@@ -6,7 +6,8 @@ use base qw( FS::part_event::Action::Mixin::fee );
sub description { 'Charge a fee based on the customer\'s current invoice'; }
sub eventtable_hashref {
- { 'cust_main' => 1 };
+ { 'cust_main' => 1,
+ 'cust_pay_batch' => 1 };
}
sub hold_until_bill { 1 }