X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fgeocode_Mixin.pm;h=8d0c7eae8f964a7d1b9e2ac5e237d42faccab150;hb=156e74067cc8723e187dfd9c5aa7ff956306fe01;hp=bc8c1180d9c9ceaf285bb837ad6c0cb802ee1a7d;hpb=dd003d59f56742f9374cec309ad81d527e88c846;p=freeside.git diff --git a/FS/FS/geocode_Mixin.pm b/FS/FS/geocode_Mixin.pm index bc8c1180d..8d0c7eae8 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;