diff options
author | Mark Wells <mark@freeside.biz> | 2015-08-06 19:17:15 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-08-06 19:17:15 -0700 |
commit | a2c11a9d32cdeb406f08e0a5df3ff1f70e56e9c7 (patch) | |
tree | 043be6b773edddff618e87966d5527850888958c /httemplate/edit/process/quick-charge.cgi | |
parent | 029eb49464888b53f73303fe38e15494a2842170 (diff) |
fix quick one-time charges, #37591, from #34598
Diffstat (limited to 'httemplate/edit/process/quick-charge.cgi')
-rw-r--r-- | httemplate/edit/process/quick-charge.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/quick-charge.cgi b/httemplate/edit/process/quick-charge.cgi index 23eead451..8ee182141 100644 --- a/httemplate/edit/process/quick-charge.cgi +++ b/httemplate/edit/process/quick-charge.cgi @@ -122,7 +122,7 @@ if ( $param->{'pkgnum'} =~ /^(\d+)$/ ) { #modifying an existing one-time charge if ( $param->{'taxclass'} eq '(select)' ) { $error .= "Must select a tax class. " - unless ($conf->config('tax_data_vendor')) + unless ($conf->config('tax_data_vendor') && ( $override || $param->{taxproductnum} ) ); $cgi->param('taxclass', ''); |