diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2019-06-25 08:27:29 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2019-06-25 09:13:27 -0400 |
| commit | 482141ff3752cb2d32c7002078735489dec30e06 (patch) | |
| tree | 76550bfcbe64fcfd1a61b6adf0b3925c8f462fe0 | |
| parent | eedd5a49c5584189e7dbc1038afa74af688b15ca (diff) | |
RT# 82137 - default payment amount now has processing fee in total if processing fee exists.
| -rw-r--r-- | httemplate/elements/tr-amount_fee.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/elements/tr-amount_fee.html b/httemplate/elements/tr-amount_fee.html index 42132e09a..42636cfe4 100644 --- a/httemplate/elements/tr-amount_fee.html +++ b/httemplate/elements/tr-amount_fee.html @@ -140,6 +140,8 @@ if ( $amount ) { $amount += $surcharge; + $amount += $processing_fee; ## needed if processing fee is checked on default. + $amount = sprintf("%.2f", $amount); } |
