package fees and usage-based fees, #27687, #25899
[freeside.git] / FS / FS / part_event / Action / pkg_fee.pm
1 package FS::part_event::Action::pkg_fee;
2
3 use strict;
4 use base qw( FS::part_event::Action::Mixin::fee );
5
6 sub description { 'Charge a fee when this package is billed'; }
7
8 sub eventtable_hashref {
9     { 'cust_pkg' => 1 };
10 }
11
12 sub hold_until_bill { 1 }
13
14 # Functionally identical to cust_fee.
15
16 1;