summaryrefslogtreecommitdiff
path: root/FS/FS/part_pkg/prepaid.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/part_pkg/prepaid.pm')
-rw-r--r--FS/FS/part_pkg/prepaid.pm28
1 files changed, 0 insertions, 28 deletions
diff --git a/FS/FS/part_pkg/prepaid.pm b/FS/FS/part_pkg/prepaid.pm
deleted file mode 100644
index 5e7d2ba..0000000
--- a/FS/FS/part_pkg/prepaid.pm
+++ /dev/null
@@ -1,28 +0,0 @@
-package FS::part_pkg::prepaid;
-
-use strict;
-use vars qw(@ISA %info);
-use FS::part_pkg::flat;
-
-@ISA = qw(FS::part_pkg::flat);
-
-%info = (
- 'name' => 'Prepaid, flat rate',
- 'fields' => {
- 'setup_fee' => { 'name' => 'One-time setup fee for this package',
- 'default' => 0,
- },
- 'recur_fee' => { 'name' => 'Initial and recharge fee for this package',
- 'default' => 0,
- }
- },
- 'fieldorder' => [ 'setup_fee', 'recur_fee', ],
- 'weight' => 25,
-);
-
-sub is_prepaid {
- 1;
-}
-
-1;
-