@@ -, +, @@ status - 'Receive shipment' from a result in your vendor search - Start a new invoice by entering an invoice number, amount for shipping cost and fund. - Finish receive (you don't need to receive anything) - You should now be on invoice.pl - Verify Status is 'Open.' and in 'Invoice details' we have the amount with the missing space. - Apply patch, reload the page. - Verify the missing space is there and the . is gone. - Close invoice, no . there either. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt @@ -69,12 +69,12 @@ [% IF ( invoiceclosedate ) %]
  • Status: - Closed on [% invoiceclosedate | $KohaDates %].
  • + Closed on [% invoiceclosedate | $KohaDates %]
  • [% ELSE %]
  • Status: - Open.
  • + Open
  • @@ -334,7 +334,7 @@ [% ELSE %]

    No orders yet

    [% IF adjustments && adjustments.count > 0 || shipmentcost && shipmentcost > 0 %] -

    Adjustments plus shipping:[% total_adj + shipmentcost | $Price %]

    +

    Adjustments plus shipping: [% total_adj + shipmentcost | $Price %]

    [% END %]
    [% END %] --