X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fcust_bill_pkg_tax_location.pm;h=44dd6e3c4c138c66518840a6485dd08eed19f2db;hp=120a2d036a0886c7919eeb2714d5c03cd3332ddd;hb=74e058c8a010ef6feb539248a550d0bb169c1e94;hpb=fafdaeca1af0771cefd8f6707b0f75ee8a33f03a diff --git a/FS/FS/cust_bill_pkg_tax_location.pm b/FS/FS/cust_bill_pkg_tax_location.pm index 120a2d036..44dd6e3c4 100644 --- a/FS/FS/cust_bill_pkg_tax_location.pm +++ b/FS/FS/cust_bill_pkg_tax_location.pm @@ -8,6 +8,7 @@ use FS::cust_pkg; use FS::cust_location; use FS::cust_bill_pay_pkg; use FS::cust_credit_bill_pkg; +use FS::cust_main_county; =head1 NAME @@ -199,10 +200,21 @@ sub cust_credit_bill_pkg { ); } +sub cust_main_county { + my $self = shift; + my $result; + if ( $self->taxtype eq 'FS::cust_main_county' ) { + $result = qsearchs( 'cust_main_county', { 'taxnum' => $self->taxnum } ); + } +} + =back =head1 BUGS +The presense of FS::cust_main_county::delete makes the cust_main_county method +unreliable + =head1 SEE ALSO L, schema.html from the base documentation.