fix bad merge
authorMark Wells <mark@freeside.biz>
Thu, 2 Apr 2015 18:55:39 +0000 (11:55 -0700)
committerMark Wells <mark@freeside.biz>
Thu, 2 Apr 2015 18:55:39 +0000 (11:55 -0700)
FS/FS/TaxEngine/internal.pm

index 3b13510..99535ad 100644 (file)
@@ -22,12 +22,10 @@ sub add_sale {
 
   push @{ $self->{items} }, $cust_bill_pkg;
 
-  my $location = $cust_pkg->tax_location; # cacheable?
-
   my @loc_keys = qw( district city county state country );
   my %taxhash = map { $_ => $location->get($_) } @loc_keys;
 
-  $taxhash{'taxclass'} = $part_pkg->taxclass;
+  $taxhash{'taxclass'} = $part_item->taxclass;
 
   my @taxes = (); # entries are cust_main_county objects
   my %taxhash_elim = %taxhash;