From d4aae137f440869b0f6218086b000d2e4a60c6ea Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 12 Jan 2020 10:32:17 +0100 Subject: [PATCH] Bug 24404: Add missing space on invoices page / remove . from status Content-Type: text/plain; charset=utf-8 On the bottom of the invoices page the summary of adjustments and shipping shows as: Adjustments plus shipping:2.00 The patch adds the missing space between text and amount. To test: - '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. Signed-off-by: Owen Leonard Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt index befc245dd9..24b488421c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt +++ b/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 %] -- 2.11.0