From 12208aa8288ae65dc86a3ef7b190dc5e000def05 Mon Sep 17 00:00:00 2001 From: Hugh Davenport Date: Thu, 17 Jan 2013 12:11:17 +1300 Subject: [PATCH] bug 9410 Fix formatting of discount rate The formatting for discount doesn't limit the number of decimal points for the discount rate when creating a new order from an empty record. This patch fixes that by limiting it to 2dp Signed-off-by: Hugh Davenport Signed-off-by: Kyle M Hall --- .../prog/en/modules/acqui/neworderempty.tt | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt index 536d439..b3f411e 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt @@ -504,9 +504,9 @@ $(document).ready(function() [% END %] [% ELSE %] [% IF ( orderdiscount ) %] - % + % [% ELSE %] - % + % [% END %] [% END %] -- 1.7.2.5