X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fgeocode_Mixin.pm;h=09b1131124b8755c3e446aea7fbe407f5d870a84;hb=f54d295490980875e4762ee008b9de7c6471ec77;hp=8d0c7eae8f964a7d1b9e2ac5e237d42faccab150;hpb=7abc645fbc7a0142a63aa0eccdabf4594ae062bd;p=freeside.git diff --git a/FS/FS/geocode_Mixin.pm b/FS/FS/geocode_Mixin.pm index 8d0c7eae8..09b113112 100644 --- a/FS/FS/geocode_Mixin.pm +++ b/FS/FS/geocode_Mixin.pm @@ -273,15 +273,48 @@ sub process_district_update { my $error = $self->replace; die $error if $error; - my %hash = map { $_ => $tax_info->{$_} } + my %hash = map { $_ => uc( $tax_info->{$_} ) } qw( district city county state country ); $hash{'source'} = $method; # apply the update only to taxes we maintain 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;