From c894828887141af250df43e4ca755fad74556122 Mon Sep 17 00:00:00 2001
From: Hugh Davenport
Date: Thu, 17 Jan 2013 10:42:14 +1300
Subject: [PATCH] [SIGNED-OFF] 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.
---
.../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.9.5