default to a session cookie instead of setting an explicit timeout, weird timezone...
[freeside.git] / FS / FS / h_cust_tax_exempt.pm
1 package FS::h_cust_tax_exempt;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::h_Common;
6 use FS::cust_tax_exempt;
7
8 @ISA = qw( FS::h_Common FS::cust_tax_exempt );
9
10 sub table { 'h_cust_tax_exempt' };
11
12 =head1 NAME
13
14 FS::h_cust_tax_exempt - Historical record of customer tax changes (old-style)
15
16 =head1 SYNOPSIS
17
18 =head1 DESCRIPTION
19
20 An FS::h_cust_tax_exempt object represents historical changes to old-style
21 customer tax exemptions.  FS::h_cust_tax_exempt inherits from FS::h_Common and
22 FS::cust_tax_exempt.
23
24 =head1 NOTE
25
26 Old-style customer tax exemptions are only useful for legacy migrations - if
27 you are looking for current customer tax exemption data see
28 L<FS::cust_tax_exempt_pkg>.
29
30 =head1 BUGS
31
32 =head1 SEE ALSO
33
34 L<FS::cust_tax_exempt>, L<FS::cust_tax_exempt_pkg>, L<FS::h_Common>,
35 L<FS::Record>, schema.html from the base documentation.
36
37 =cut
38
39 1;
40