diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-05-08 15:34:25 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-05-08 15:34:25 -0700 |
commit | a68564e6856a7ea63763eeaf7962a5cb2df649af (patch) | |
tree | 45022b1dc0208ac6c3fdc5f413e25598c815dab7 /httemplate/edit/cust_main.cgi | |
parent | 52cf6949df47667d9864f5807549aa68789ef2fa (diff) |
separate tax exemption numbers for individual exemptions w/tax-cust_exempt-groups, RT#17658
Diffstat (limited to 'httemplate/edit/cust_main.cgi')
-rwxr-xr-x | httemplate/edit/cust_main.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi index 119572a11..b97fb16bf 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -367,7 +367,7 @@ if ( $cgi->param('error') ) { } my %keep = map { $_=>1 } qw( error tagnum lock_agentnum lock_pkgpart ); -$cgi->delete( grep !$keep{$_}, $cgi->param ); +$cgi->delete( grep { !$keep{$_} && $_ !~ /^tax_/ } $cgi->param ); my $title = $custnum ? 'Edit Customer' : 'Add Customer'; $title = mt($title); |