From aa2cb98c347122ca883cfe428edf3919f59fc3d5 Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Wed, 18 Jul 2018 10:50:35 -0400 Subject: RT# 34134 - updated UI experience --- httemplate/elements/tr-amount_fee.html | 19 ++-- httemplate/elements/tr-select-invoice.html | 21 ++-- httemplate/elements/tr-select-payment_options.html | 117 ++++++++++++++------- 3 files changed, 103 insertions(+), 54 deletions(-) (limited to 'httemplate/elements') diff --git a/httemplate/elements/tr-amount_fee.html b/httemplate/elements/tr-amount_fee.html index 1c78d7ec1..a84fef6ec 100644 --- a/httemplate/elements/tr-amount_fee.html +++ b/httemplate/elements/tr-amount_fee.html @@ -1,6 +1,6 @@ - > + <% mt('Payment amount') |h %> - + -% if ($fee || $surcharge) { +% if ($fee || $surcharge_percentage || $surcharge_flatfee ) {
<% $money_char %><% length($amount) ? $money_char. sprintf('%.2f', ($fee_display eq 'add') ? $amount + $fee : $amount - $fee ) : '' %> <% $fee_display eq 'add' ? 'TOTAL' : 'AVAILABLE' %> % } -% if ( $surcharge ) { +% if ( $surcharge_percentage || $surcharge_flatfee ) { @@ -38,7 +38,7 @@