RT#8460: inventory activity report
authormark <mark>
Wed, 26 May 2010 07:12:41 +0000 (07:12 +0000)
committermark <mark>
Wed, 26 May 2010 07:12:41 +0000 (07:12 +0000)
FS/FS/Mason.pm
FS/FS/h_inventory_item.pm [new file with mode: 0644]

index 10edd6d..8b83f0a 100644 (file)
@@ -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 (file)
index 0000000..b4f0161
--- /dev/null
@@ -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;
+