add skip_dcontext_suffix to skip CDRs with dcontext ending in a definable string...
[freeside.git] / FS / FS / h_cust_pkg_reason.pm
1 package FS::h_cust_pkg_reason;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::h_Common;
6 use FS::cust_pkg_reason;
7
8 @ISA = qw( FS::h_Common FS::cust_pkg_reason );
9
10 sub table { 'h_cust_pkg_reason' };
11
12 =head1 NAME
13
14 FS::h_cust_pkg_reason - Historical record of customer package changes
15
16 =head1 SYNOPSIS
17
18 =head1 DESCRIPTION
19
20 An FS::h_cust_pkg_reason object represents historical changes to packages.
21 FS::h_cust_pkg_reason inherits from FS::h_Common and FS::cust_pkg_reason.
22
23 =head1 BUGS
24
25 =head1 SEE ALSO
26
27 L<FS::cust_pkg_reason>,  L<FS::h_Common>, L<FS::Record>, schema.html from the
28 base documentation.
29
30 =cut
31
32 1;
33
34