@@ -, +, @@ --- .../intranet-tmpl/prog/en/modules/acqui/ordered.tt | 6 +++--- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt @@ -68,7 +68,7 @@ [% order.entrydate | $KohaDates %] - [% order.subtotal | html %] + [% order.subtotal | $Price %] [% END %] @@ -79,7 +79,7 @@ Adjustment cost for invoice [% adjustment.invoiceid | html %] - [% adjustment.adjustment | html %] + [% adjustment.adjustment | $Price %] [% END %] @@ -93,7 +93,7 @@ - [% total | html %] + [% total | $Price %] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt @@ -72,7 +72,7 @@ [% order.datereceived | $KohaDates %] - [% order.rowtotal | html %] + [% order.rowtotal | $Price %] [% END %] @@ -81,7 +81,7 @@ [% IF shipmentcosts.size || ( adjustments && adjustments.count > 0 ) %] Sub total - [% subtotal | html %] + [% subtotal | $Price %] [% END %] [% IF shipmentcosts.size %] @@ -89,7 +89,7 @@ Shipping cost for invoice [% shipmentcost.invoicenumber | html %] - [% shipmentcost.shipmentcost | html %] + [% shipmentcost.shipmentcost | $Price %] [% END %] [% END %] @@ -98,13 +98,13 @@ Adjustment cost for invoice [% adjustment.invoiceid | html %] - [% adjustment.adjustment | html %] + [% adjustment.adjustment | $Price %] [% END %] [% END %] TOTAL - [% total | html %] + [% total | $Price %] --