From c252c0b5071fe7375cbc9022ba7b2cc16e3cb16c Mon Sep 17 00:00:00 2001 From: Hugh Davenport Date: Thu, 17 Jan 2013 10:42:14 +1300 Subject: [PATCH] bug 9062 Fix spacing next to tax rate On the supplier view screen, there was a space after the discount and before the % sign, but there was none for the tax rate. This patch adds in a patch, so they look similar. Signed-off-by: Hugh Davenport Signed-off-by: Chris Cormack --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt index bf5d367..e4efa70 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt @@ -240,7 +240,7 @@ if (f.company.value == "") {

Discount: [% discount | format("%.1f") %] %

Tax rate: - [% 0 + gstrate * 100 | format("%.1f") %]%

+ [% 0 + gstrate * 100 | format("%.1f") %] %

[% IF deliverytime.defined %]

Delivery time: [% deliverytime %] days

-- 1.7.10.4