1 package FS::part_pkg::prepaid;
4 use vars qw(@ISA %info %recur_action);
6 use FS::part_pkg::flat;
8 @ISA = qw(FS::part_pkg::flat);
10 tie %recur_action, 'Tie::IxHash',
11 'suspend' => 'suspend',
16 'name' => 'Prepaid, flat rate',
17 #'name' => 'Prepaid (no automatic recurring)', #maybe use it here too
18 'shortname' => 'Prepaid, no automatic cycle',
20 'setup_fee' => { 'name' => 'One-time setup fee for this package',
23 'recur_fee' => { 'name' => 'Initial and recharge fee for this package',
26 'recur_action' => { 'name' => 'Action to take upon reaching end of prepaid preiod',
28 'select_options' => \%recur_action,
31 'fieldorder' => [ 'setup_fee', 'recur_fee', 'recur_action', ],