summaryrefslogtreecommitdiff
path: root/httemplate/edit/process/quick-charge.cgi
diff options
context:
space:
mode:
authorivan <ivan>2009-02-17 02:02:00 +0000
committerivan <ivan>2009-02-17 02:02:00 +0000
commit74190e6834c47c73b7f073fb1de444e572180333 (patch)
tree2fe33ac06aa8631de9cfa704bfbdd64de7108918 /httemplate/edit/process/quick-charge.cgi
parent7621140d9f8945c54523c05bcac8e79693a16a52 (diff)
add tax-exempt checkbox to one-time charges, RT#4858
Diffstat (limited to 'httemplate/edit/process/quick-charge.cgi')
-rw-r--r--httemplate/edit/process/quick-charge.cgi15
1 files changed, 8 insertions, 7 deletions
diff --git a/httemplate/edit/process/quick-charge.cgi b/httemplate/edit/process/quick-charge.cgi
index 839a4e911..8fa57ddea 100644
--- a/httemplate/edit/process/quick-charge.cgi
+++ b/httemplate/edit/process/quick-charge.cgi
@@ -53,14 +53,15 @@ unless ( $error ) {
or $error .= "Unknown customer number $custnum. ";
$error ||= $cust_main->charge( {
- 'amount' => $amount,
- 'quantity' => $quantity,
- 'pkg' => scalar($cgi->param('pkg')),
- 'taxclass' => scalar($cgi->param('taxclass')),
+ 'amount' => $amount,
+ 'quantity' => $quantity,
+ 'pkg' => scalar($cgi->param('pkg')),
+ 'setuptax' => scalar($cgi->param('setuptax')),
+ 'taxclass' => scalar($cgi->param('taxclass')),
'taxproductnum' => scalar($cgi->param('taxproductnum')),
- 'tax_override' => $override,
- 'classnum' => scalar($cgi->param('classnum')),
- 'additional' => \@description,
+ 'tax_override' => $override,
+ 'classnum' => scalar($cgi->param('classnum')),
+ 'additional' => \@description,
} );
}