diff options
author | ivan <ivan> | 2011-03-14 22:43:01 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-03-14 22:43:01 +0000 |
commit | 15a554298a7a58669c5b818344cfd8c5cc6059a7 (patch) | |
tree | 86c6f6ff5366ce7da4d5020ca78a01b51e473207 | |
parent | 80372d41bfbf6b5313c2491107fe81dc42c66d01 (diff) |
fix prorates & recurring fees with recur_Common-using packages, RT#11993
-rw-r--r-- | FS/FS/part_pkg/flat.pm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/FS/FS/part_pkg/flat.pm b/FS/FS/part_pkg/flat.pm index f5a2100b9..fdf08c99b 100644 --- a/FS/FS/part_pkg/flat.pm +++ b/FS/FS/part_pkg/flat.pm @@ -1,19 +1,16 @@ package FS::part_pkg::flat; use strict; -use vars qw( @ISA %info - %usage_recharge_fields @usage_recharge_fieldorder +use base qw( FS::part_pkg + FS::part_pkg::prorate_Mixin + FS::part_pkg::discount_Mixin ); +use vars qw( %info %usage_recharge_fields @usage_recharge_fieldorder ); use Tie::IxHash; use List::Util qw(min); # max); #use FS::Record qw(qsearch); use FS::UI::bytecount; use FS::Conf; -use FS::part_pkg; - -@ISA = qw(FS::part_pkg - FS::part_pkg::prorate_Mixin - FS::part_pkg::discount_Mixin); tie my %temporalities, 'Tie::IxHash', 'upcoming' => "Upcoming (future)", |