diff options
author | jeff <jeff> | 2010-06-05 05:51:37 +0000 |
---|---|---|
committer | jeff <jeff> | 2010-06-05 05:51:37 +0000 |
commit | 339c9336a908446c63980bff864bdc270c408e23 (patch) | |
tree | 143dc663887e00f719cf24b436c40939566e8a07 | |
parent | dde22b43f5f2efbdc8e8fc411ddac1357e70cbc4 (diff) |
don't delete too much RT#8581
-rw-r--r-- | FS/FS/part_pkg_taxrate.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_pkg_taxrate.pm b/FS/FS/part_pkg_taxrate.pm index 5a1e7baa9..fb1afce18 100644 --- a/FS/FS/part_pkg_taxrate.pm +++ b/FS/FS/part_pkg_taxrate.pm @@ -296,7 +296,7 @@ sub batch_import { $hash->{'country'} = 'US'; # CA is available - delete($hash->{'taxable'}) if ($hash->{'taxable'} eq 'N'); + $hash->{'taxable'} = '' if ($hash->{'taxable'} eq 'N'); if (exists($hash->{actionflag}) && $hash->{actionflag} eq 'D') { delete($hash->{actionflag}); |