summaryrefslogtreecommitdiff
path: root/FS/FS/part_pkg_taxrate.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2014-08-30 18:20:52 -0700
committerMark Wells <mark@freeside.biz>2014-08-30 18:20:52 -0700
commit60dc4fe638eb9abc5a3ea92d43031dcbfeb71454 (patch)
tree7afb7557490089633abb2b26ac0301bf2b352c49 /FS/FS/part_pkg_taxrate.pm
parent5ef5203cb6da8e0a8e1f60228b9a9250605f404e (diff)
enable CCH update to remove tax classes, #30670
Diffstat (limited to 'FS/FS/part_pkg_taxrate.pm')
-rw-r--r--FS/FS/part_pkg_taxrate.pm28
1 files changed, 16 insertions, 12 deletions
diff --git a/FS/FS/part_pkg_taxrate.pm b/FS/FS/part_pkg_taxrate.pm
index a732720..bfb1ea8 100644
--- a/FS/FS/part_pkg_taxrate.pm
+++ b/FS/FS/part_pkg_taxrate.pm
@@ -243,9 +243,12 @@ sub batch_import {
);
unless ($part_pkg_taxproduct) {
- return "Can't find part_pkg_taxproduct for txmatrix deletion: ".
- join(" ", map { "$_ => ". $hash->{$_} } @fields)
- if ($hash->{'actionfield'} && $hash->{'actionflag'} eq 'D');
+ if (($hash->{'actionfield'} || '') eq 'D') {
+ warn "WARNING: Can't find part_pkg_taxproduct for txmatrix deletion: ".
+ join(" ", map { "$_ => ". $hash->{$_} } @fields) .
+ " (ignored)\n";
+ next;
+ }
$part_pkg_taxproduct{'description'} =
join(' : ', (map{ $hash->{$_} } qw(groupdesc itemdesc)),
@@ -262,6 +265,8 @@ sub batch_import {
delete($hash->{$_})
for qw(group groupdesc item itemdesc provider customer rectype );
+
+ # resolve the taxtype/taxcat fields to taxclassnums
my %map = ( 'taxclassnum' => [ 'taxtype', 'taxcat' ],
'taxclassnumtaxed' => [ 'taxtypetaxed', 'taxcattaxed' ],
@@ -275,14 +280,13 @@ sub batch_import {
'taxclass' => $class,
}
);
- $hash->{$item} = $tax_class->taxclassnum
- if $tax_class;
-
- return "Can't find tax class for txmatrix deletion: ".
- join(" ", map { "$_ => ". $hash->{$_} } @fields)
- if ( $hash->{'actionflag'} && $hash->{'actionflag'} eq 'D' &&
- !$tax_class && $class ne ':'
- );
+ if ( $tax_class ) {
+ $hash->{$item} = $tax_class->taxclassnum;
+ } elsif ($class ne ':' and ($hash->{actionflag} || '') eq 'D') {
+ # return "Can't find tax class for txmatrix deletion: ".
+ warn "WARNING: Can't find tax class $class for txmatrix deletion (ignored)\n";
+ return ''; # don't delete the record, then
+ }
delete($hash->{$_}) foreach @{$map{$item}};
}
@@ -319,7 +323,7 @@ sub batch_import {
$hash->{taxproductnum} .= ' ( '. $taxproduct->taxproduct. ' )'
if $taxproduct;
}
- return "Can't find part_pkg_taxrate to delete: ".
+ warn "WARNING: Can't find part_pkg_taxrate to delete: ".
join(" ", map { "$_ => *". $hash->{$_}. '*' } keys(%$hash) );
}