summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-amount_fee.html
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-05-11 11:29:36 -0400
committerChristopher Burger <burgerc@freeside.biz>2018-05-11 11:29:36 -0400
commit01c9143a54bf5e1513537547fd362822f58d1e2a (patch)
tree5c35d49a858a95818dc3459c5892a3e2f3774a71 /httemplate/elements/tr-amount_fee.html
parentd2cc614910c251801564615a268c7ca3bdb2c954 (diff)
RT# 79737 - Added ability to us a cc surcharge of a flat fee.
Diffstat (limited to 'httemplate/elements/tr-amount_fee.html')
-rw-r--r--httemplate/elements/tr-amount_fee.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/httemplate/elements/tr-amount_fee.html b/httemplate/elements/tr-amount_fee.html
index 9c13f5952..9e6d9e96d 100644
--- a/httemplate/elements/tr-amount_fee.html
+++ b/httemplate/elements/tr-amount_fee.html
@@ -94,6 +94,9 @@ if ( $amount > 0 ) {
$amount += $amount * $opt{'surcharge_percentage'}/100
if $opt{'surcharge_percentage'} > 0;
+ $amount += $opt{'surcharge_flatfee'}
+ if $opt{'surcharge_flatfee'} > 0;
+
$amount = sprintf("%.2f", $amount);
}