9373091ab57a4de543728cac5b3e8eae186992a1
[freeside.git] / FS / FS / part_event / Action / cust_fee.pm
1 package FS::part_event::Action::cust_fee;
2
3 use strict;
4 use base qw( FS::part_event::Action::Mixin::fee );
5
6 sub description { 'Charge a fee based on the customer\'s current invoice'; }
7
8 sub eventtable_hashref {
9     { 'cust_main' => 1 };
10 }
11
12 sub hold_until_bill { 1 }
13
14 # Otherwise identical to cust_bill_fee.  We only have a separate event 
15 # because it behaves differently as an invoice event than as a customer
16 # event, and needs a different description.
17
18 1;