diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-05-08 15:34:37 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-05-08 15:34:37 -0700 |
| commit | faadb1bcccbbdfee91afffded23dfebb89ebafe0 (patch) | |
| tree | 357322b1fc04d0949f67e41d8a5d50d446a137f3 /httemplate/edit/cust_main.cgi | |
| parent | b5aceddf3c5720330e1027d46fea36f4ab06b55a (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 1762b0015..da3667eb8 100755 --- a/httemplate/edit/cust_main.cgi +++ b/httemplate/edit/cust_main.cgi @@ -360,7 +360,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); |
