From a72cc312c359db6bbac5b77d0436547833c3e853 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 25 Sep 2014 16:32:01 +0200 Subject: [PATCH] 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. --- 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 161648f..6349173 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -436,10 +436,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 ) %] @@ -457,10 +457,10 @@     [% total_quantity %] - [% total_gste %] - [% total_gsti %] + [% total_gste | $Price %] + [% total_gsti | $Price %]   - [% total_gstvalue %] + [% total_gstvalue | $Price %]   [% IF ( active ) %] [% UNLESS ( closedate ) %] -- 2.1.0