summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Action/pkg_fee.pm
blob: 7e409a55610988cb4b65507c80fba2d607cf4ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package FS::part_event::Action::pkg_fee;

use strict;
use base qw( FS::part_event::Action::Mixin::fee );

sub description { 'Charge a fee when this package is billed'; }

sub eventtable_hashref {
    { 'cust_pkg' => 1 };
}

sub hold_until_bill { 1 }

# Functionally identical to cust_fee.

1;