Bug 9062 Fix spacing next to tax rate
authorHugh Davenport <hugh@davenport.net.nz>
Wed, 16 Jan 2013 21:42:14 +0000 (10:42 +1300)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Thu, 17 Jan 2013 23:18:15 +0000 (18:18 -0500)
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>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Tiny follow-up, fixes spacing.
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt

index bf5d367..e4efa70 100644 (file)
@@ -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>