From ebbb9301977081aad7476600fc4cd4b96f374cf9 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Wed, 14 Mar 2018 11:04:50 +0200 Subject: [PATCH] Bug 20395: Change paycollect to use Price formatter Test plan: 1) Apply patch 2) Go to Home -> Patrons -> Patron details (for any patron) 3) Create manual invoice for the patron 4) Pay fines -> Pay -button 5) Check that the currency values look correct 6) Pay fines -> Pay amount -button 7) Check that the currency values look correct 8) Pay fines -> Pay selected -button 9) Check that the currency values look correct 10) Change the CurrencyFormat setting 11) Repeat 2-9 Signed-off-by: Pasi Kallinen Signed-off-by: Martin Renvoize --- .../prog/en/modules/members/paycollect.tt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt index 20e588ab18..125ccc6e10 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt @@ -112,12 +112,12 @@
[% IF ( error_over ) %]
- You must pay a value less than or equal to [% total_due | format('%.2f') %]. + You must pay a value less than or equal to [% total_due | $Price %].
[% END %] [% IF ( error_under ) %]
- You must collect a value greater than or equal to [% total_paid | format('%.2f') %]. + You must collect a value greater than or equal to [% total_paid | $Price %].
[% END %] @@ -154,7 +154,7 @@ Amount outstanding - Total amount payable:[% amountoutstanding | format('%.2f') %] + Total amount payable:[% amountoutstanding | $Price %] @@ -162,8 +162,8 @@ [% line.debit_type_code = debit_type_code %] [% PROCESS account_type_description account=line %] - [% amount | format('%.2f') %] - [% amountoutstanding | format('%.2f') %] + [% amount | $Price %] + [% amountoutstanding | $Price %] @@ -245,13 +245,13 @@ Amount Amount outstanding - Total amount outstanding:[% amountoutstanding | format('%.2f') %] + Total amount outstanding:[% amountoutstanding | $Price %] [% individual_description | html %] [% line.debit_type_code = debit_type_code %] [% PROCESS account_type_description account=line %] - [% amount | format('%.2f') %] - [% amountoutstanding | format('%.2f') %] + [% amount | $Price %] + [% amountoutstanding | $Price %] @@ -307,7 +307,7 @@
  1. Total amount outstanding: - [% total | format('%.2f') %] + [% total | $Price %]
  2. [% IF type == 'WRITEOFF' %] -- 2.20.1