From 2eca97910924e756b42f645acbacb6fef6f3f586 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
Signed-off-by: Katrin Fischer
Tiny follow-up, fixes spacing.
Signed-off-by: Jared Camins-Esakov
---
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 bf5d367b7e..e4efa708de 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
--
2.39.5