From bc0f32174c88287eed46bd890e041d6c2f42bfbf Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 25 Sep 2014 16:32:01 +0200 Subject: [PATCH] [PASSED QA] Bug 12970: Format totals The total values should be formated too. Test plan: 1/ Go on the basket page 2/ Using the CurrencyFormat, verify the totals are correctly formated. Signed-off-by: Paola Rossi Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt index ef6d9d0..117e7b2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -422,10 +422,10 @@     [% foot_loo.quantity %] - [% foot_loo.totalgste %] - [% foot_loo.totalgsti %] + [% foot_loo.totalgste | $Price%] + [% foot_loo.totalgsti | $Price %]   - [% foot_loo.gstvalue %] + [% foot_loo.gstvalue | $Price %]   [% IF ( active ) %] [% UNLESS ( closedate ) %] @@ -443,10 +443,10 @@     [% total_quantity %] - [% total_gste %] - [% total_gsti %] + [% total_gste | $Price %] + [% total_gsti | $Price %]   - [% total_gstvalue %] + [% total_gstvalue | $Price %]   [% IF ( active ) %] [% UNLESS ( closedate ) %] -- 1.9.1