From b4fe6e9105faa7570cf037111bc70121b18a5b68 Mon Sep 17 00:00:00 2001 From: mark Date: Wed, 26 May 2010 07:12:41 +0000 Subject: [PATCH] RT#8460: inventory activity report --- FS/FS/Mason.pm | 1 + FS/FS/h_inventory_item.pm | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 FS/FS/h_inventory_item.pm 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, L, L, schema.html from the +base documentation. + +=cut + +1; + -- 2.11.0