summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/Mason.pm1
-rw-r--r--FS/FS/h_inventory_item.pm33
2 files changed, 34 insertions, 0 deletions
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm
index 10edd6d0d..8b83f0a49 100644
--- a/FS/FS/Mason.pm
+++ b/FS/FS/Mason.pm
@@ -217,6 +217,7 @@ if ( -e $addl_handler_use_file ) {
use FS::part_pkg_report_option;
use FS::cust_attachment;
use FS::h_cust_pkg;
+ use FS::h_inventory_item;
use FS::h_svc_acct;
use FS::h_svc_broadband;
use FS::h_svc_domain;
diff --git a/FS/FS/h_inventory_item.pm b/FS/FS/h_inventory_item.pm
new file mode 100644
index 000000000..b4f016128
--- /dev/null
+++ b/FS/FS/h_inventory_item.pm
@@ -0,0 +1,33 @@
+package FS::h_inventory_item;
+
+use strict;
+use vars qw( @ISA );
+use FS::h_Common;
+use FS::inventory_item;
+
+@ISA = qw( FS::h_Common FS::inventory_item );
+
+sub table { 'h_inventory_item' };
+
+=head1 NAME
+
+FS::h_inventory_item - Historical record of inventory item activity
+
+=head1 SYNOPSIS
+
+=head1 DESCRIPTION
+
+An FS::h_inventory_item object represents a change in the state of an
+inventory item.
+
+=head1 BUGS
+
+=head1 SEE ALSO
+
+L<FS::inventory_item>, L<FS::h_Common>, L<FS::Record>, schema.html from the
+base documentation.
+
+=cut
+
+1;
+