summaryrefslogtreecommitdiff
path: root/FS/FS/geocode_Mixin.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-03-01 15:43:14 -0800
committerMark Wells <mark@freeside.biz>2016-03-01 15:45:47 -0800
commit7abc645fbc7a0142a63aa0eccdabf4594ae062bd (patch)
tree4b77a0194be07e1fa5c6bc9e25e9dd27f0682859 /FS/FS/geocode_Mixin.pm
parent5dcace5a4d40dedfb771c7f53e4db443062cdac2 (diff)
track taxes created by Washington sales tax lookup so they can be updated in place, #40645
Diffstat (limited to 'FS/FS/geocode_Mixin.pm')
-rw-r--r--FS/FS/geocode_Mixin.pm25
1 files changed, 16 insertions, 9 deletions
diff --git a/FS/FS/geocode_Mixin.pm b/FS/FS/geocode_Mixin.pm
index bc8c118..8d0c7ea 100644
--- a/FS/FS/geocode_Mixin.pm
+++ b/FS/FS/geocode_Mixin.pm
@@ -248,6 +248,8 @@ Queueable function to update the tax district code using the selected method
=cut
+# this is run from the job queue so I'm not transactionizing it.
+
sub process_district_update {
my $class = shift;
my $id = shift;
@@ -273,15 +275,20 @@ sub process_district_update {
my %hash = map { $_ => $tax_info->{$_} }
qw( district city county state country );
- $hash{'taxname'} = '';
-
- my $old = qsearchs('cust_main_county', \%hash);
- if ( $old ) {
- my $new = new FS::cust_main_county { $old->hash, %$tax_info };
- warn "updating tax rate for district ".$tax_info->{'district'} if $DEBUG;
- $error = $new->replace($old);
- }
- else {
+ $hash{'source'} = $method; # apply the update only to taxes we maintain
+
+ my @old = qsearch('cust_main_county', \%hash);
+ if ( @old ) {
+ foreach my $cust_main_county (@old) {
+ warn "updating tax rate #".$cust_main_county->taxnum.
+ " for district ".$tax_info->{'district'} if $DEBUG;
+ # update the tax rate only
+ $cust_main_county->set('tax', $tax_info->{'tax'});
+ $error ||= $cust_main_county->replace;
+ }
+ } else {
+ # make a new tax record, and mark it so we can find it later
+ $tax_info->{'source'} = $method;
my $new = new FS::cust_main_county $tax_info;
warn "creating tax rate for district ".$tax_info->{'district'} if $DEBUG;
$error = $new->insert;