X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2FTaxEngine%2Finternal.pm;h=d680af86e9cd1e62bb860040eefd26571a84641d;hp=df2d6095678a8e3ece065d31e64aa333488d8463;hb=4e282b89c158949c1726f044e0102e126fbf5bf2;hpb=94c7f944bc5836e071ff3484cbba7e5b94e075a3 diff --git a/FS/FS/TaxEngine/internal.pm b/FS/FS/TaxEngine/internal.pm index df2d60956..d680af86e 100644 --- a/FS/FS/TaxEngine/internal.pm +++ b/FS/FS/TaxEngine/internal.pm @@ -23,7 +23,8 @@ sub add_sale { my ($self, $cust_bill_pkg) = @_; my $part_item = $cust_bill_pkg->part_X; - my $location = $cust_bill_pkg->tax_location; + my $location = $cust_bill_pkg->tax_location + or return; my $custnum = $self->{cust_main}->custnum; push @{ $self->{items} }, $cust_bill_pkg; @@ -38,10 +39,28 @@ sub add_sale { my @taxes = (); # entries are cust_main_county objects my %taxhash_elim = %taxhash; my @elim = qw( district city county state ); + + # WA state district city names are not stable in the WA tax tables + # Allow districts to match with just a district id + if ( $taxhash{district} ) { + @taxes = qsearch( cust_main_county => { + district => $taxhash{district}, + taxclass => $taxhash{taxclass}, + }); + if ( !scalar(@taxes) && $taxhash{taxclass} ) { + qsearch( cust_main_county => { + district => $taxhash{district}, + taxclass => '', + }); + } + } + do { #first try a match with taxclass - @taxes = qsearch( 'cust_main_county', \%taxhash_elim ); + if ( !scalar(@taxes) ) { + @taxes = qsearch( 'cust_main_county', \%taxhash_elim ); + } if ( !scalar(@taxes) && $taxhash_elim{'taxclass'} ) { #then try a match without taxclass @@ -104,6 +123,15 @@ sub taxline { my $taxable_charged = $cust_bill_pkg->setup + $cust_bill_pkg->recur or next; # don't create zero-amount exemptions + ## re-add the discounted amount if the tax needs to be charged pre discount + if ($tax_object->charge_prediscount) { + my $discount_amount = 0; + foreach my $discount (@{$cust_bill_pkg->discounts}) { + $discount_amount += $discount->amount; + } + $taxable_charged += $discount_amount; + } + # XXX the following procedure should probably be in cust_bill_pkg if ( $exempt_cust ) { @@ -295,12 +323,21 @@ sub taxline { $this_tax_cents = int($this_tax_cents); } + my $locationnum; + if ( my $cust_pkg = $cust_bill_pkg->cust_pkg ) { + $locationnum = $cust_pkg->tax_locationnum; + } elsif ( $conf->exists('tax-ship_address') ) { + $locationnum = $cust_main->ship_locationnum; + } else { + $locationnum = $cust_main->bill_locationnum; + } + my $location = FS::cust_bill_pkg_tax_location->new({ - 'taxnum' => $tax_object->taxnum, - 'taxtype' => ref($tax_object), - 'cents' => $this_tax_cents, - 'pkgnum' => $cust_bill_pkg->pkgnum, - 'locationnum' => $cust_bill_pkg->cust_pkg->tax_locationnum, + 'taxnum' => $tax_object->taxnum, + 'taxtype' => ref($tax_object), + 'cents' => $this_tax_cents, + 'pkgnum' => $cust_bill_pkg->pkgnum, + 'locationnum' => $locationnum, 'taxable_cust_bill_pkg' => $cust_bill_pkg, }); push @tax_links, $location;