summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-03-21 15:54:24 -0700
committerMark Wells <mark@freeside.biz>2016-03-21 15:56:25 -0700
commitdd0eaead5f6188954e36918d6a4710e74e015bdf (patch)
tree1ec97951894742d63736eb36cc9180efdfb1d0ae /FS/FS
parent49c065a38b0bae0956abf0c791062f4c60ac5b51 (diff)
detect and fix duplicate taxes in Washington sales tax lookup, #40645, #40144
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/geocode_Mixin.pm35
1 files changed, 34 insertions, 1 deletions
diff --git a/FS/FS/geocode_Mixin.pm b/FS/FS/geocode_Mixin.pm
index 8d0c7eae8..a372faaa8 100644
--- a/FS/FS/geocode_Mixin.pm
+++ b/FS/FS/geocode_Mixin.pm
@@ -279,9 +279,42 @@ sub process_district_update {
my @old = qsearch('cust_main_county', \%hash);
if ( @old ) {
+ # prune any duplicates rather than updating them
+ my %keep; # key => cust_main_county record
foreach my $cust_main_county (@old) {
+ my $key = join('.', $cust_main_county->city ,
+ $cust_main_county->district ,
+ $cust_main_county->taxclass
+ );
+ if ( exists $keep{$key} ) {
+ my $disable_this = $cust_main_county;
+ # prefer records that have a tax name
+ if ( $cust_main_county->taxname and not $keep{$key}->taxname ) {
+ $disable_this = $keep{$key};
+ $keep{$key} = $cust_main_county;
+ }
+ # disable by setting the rate to zero, and setting source to null
+ # so it doesn't get auto-updated in the future. don't actually
+ # delete it, that produces orphan records
+ warn "disabling tax rate #" .
+ $disable_this->taxnum .
+ " because it's a duplicate for $key\n"
+ if $DEBUG;
+ # by setting its rate to zero, and never updating
+ # it again
+ $disable_this->set('tax' => 0);
+ $disable_this->set('source' => '');
+ $error = $disable_this->replace;
+ die $error if $error;
+ }
+
+ $keep{$key} ||= $cust_main_county;
+
+ }
+ foreach my $key (keys %keep) {
+ my $cust_main_county = $keep{$key};
warn "updating tax rate #".$cust_main_county->taxnum.
- " for district ".$tax_info->{'district'} if $DEBUG;
+ " for $key" if $DEBUG;
# update the tax rate only
$cust_main_county->set('tax', $tax_info->{'tax'});
$error ||= $cust_main_county->replace;