summaryrefslogtreecommitdiff
path: root/FS/FS/cust_tax_exempt_pkg.pm
diff options
context:
space:
mode:
authorivan <ivan>2006-01-26 15:27:10 +0000
committerivan <ivan>2006-01-26 15:27:10 +0000
commitb782294eb91805f708a7776fe67f1c0863f4096b (patch)
tree3c6987f38b65a72118b8a369869719a12d8cf141 /FS/FS/cust_tax_exempt_pkg.pm
parentcbbd0225b07269209c674733bcf70f1c1308e84a (diff)
whew, FINALLY can fix monthly exemption columns to work correctly. also make them agent-specific. also fix package exemption columns, they were bunk too, sheesh. start adding package classes for package class tax reporting.
Diffstat (limited to 'FS/FS/cust_tax_exempt_pkg.pm')
-rw-r--r--FS/FS/cust_tax_exempt_pkg.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_tax_exempt_pkg.pm b/FS/FS/cust_tax_exempt_pkg.pm
index 7193ace..28fa243 100644
--- a/FS/FS/cust_tax_exempt_pkg.pm
+++ b/FS/FS/cust_tax_exempt_pkg.pm
@@ -3,10 +3,11 @@ package FS::cust_tax_exempt_pkg;
use strict;
use vars qw( @ISA );
use FS::Record qw( qsearch qsearchs );
+use FS::cust_main_Mixin;
use FS::cust_bill_pkg;
use FS::cust_main_county;
-@ISA = qw(FS::Record);
+@ISA = qw( FS::cust_main_Mixin FS::Record );
=head1 NAME