summaryrefslogtreecommitdiff
path: root/FS/FS/h_part_pkg.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2012-09-26 00:53:05 -0700
committerMark Wells <mark@freeside.biz>2012-09-26 00:53:05 -0700
commit82d8565fbeaebd69177a3a14d833685ecb86a545 (patch)
tree2b5313e05aaa0cdbc1be393f10263010db2d62d8 /FS/FS/h_part_pkg.pm
parenteb9148f0ab9aac5e4f89824b7fab6bb9d648e688 (diff)
tax calculation and reporting for new customer locations, #940
Diffstat (limited to 'FS/FS/h_part_pkg.pm')
-rw-r--r--FS/FS/h_part_pkg.pm37
1 files changed, 37 insertions, 0 deletions
diff --git a/FS/FS/h_part_pkg.pm b/FS/FS/h_part_pkg.pm
new file mode 100644
index 0000000..2c0e65f
--- /dev/null
+++ b/FS/FS/h_part_pkg.pm
@@ -0,0 +1,37 @@
+package FS::h_part_pkg;
+
+use strict;
+use vars qw( @ISA );
+use base qw(FS::h_Common FS::part_pkg);
+
+sub table { 'h_part_pkg' };
+
+sub _rebless {}; # don't try to rebless these
+
+=head1 NAME
+
+FS::h_part_pkg - Historical record of package definition.
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+An FS::h_part_pkg object represents historical changes to package
+definitions.
+
+=head1 BUGS
+
+Many important properties of a part_pkg are in other tables, especially
+plan options, service allotments, and link/bundle relationships. The
+methods to access those from the part_pkg will work, but they're
+really accessing current, not historical, data. Be careful.
+
+=head1 SEE ALSO
+
+L<FS::part_pkg>, L<FS::h_Common>, L<FS::Record>, schema.html from the base
+documentation.
+
+=cut
+
+1;
+