From c252c0b5071fe7375cbc9022ba7b2cc16e3cb16c Mon Sep 17 00:00:00 2001 From: Hugh Davenport <hugh@davenport.net.nz> 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 <hugh@davenport.net.nz> Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz> --- 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 == "") { <p><strong>Discount: </strong> [% discount | format("%.1f") %] %</p> <p><strong>Tax rate: </strong> - [% 0 + gstrate * 100 | format("%.1f") %]%</p> + [% 0 + gstrate * 100 | format("%.1f") %] %</p> [% IF deliverytime.defined %] <p><strong>Delivery time: </strong> [% deliverytime %] days</p> -- 1.7.10.4