Bugzilla – Attachment 85014 Details for
Bug 22171
Format shipping cost on invoice.pl with with 2 decimals
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22171: Fix shipping cost display on invoice
Bug-22171-Fix-shipping-cost-display-on-invoice.patch (text/plain), 1.79 KB, created by
Martin Renvoize (ashimema)
on 2019-02-12 13:42:29 UTC
(
hide
)
Description:
Bug 22171: Fix shipping cost display on invoice
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-02-12 13:42:29 UTC
Size:
1.79 KB
patch
obsolete
>From 179d68ec1904937b8bdf50e8840de8179add95f5 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Tue, 5 Feb 2019 21:29:13 +0000 >Subject: [PATCH] Bug 22171: Fix shipping cost display on invoice > >When not 0 the shipping cost on the invoice would display with >a lot of numbers after the comma. This fixed it to display with >only 2. > >To test: >- Make sure you have an invoice with shipping cost set (example: 5.00) >- Open the invoice for editing (invoice.pl) >- Verify the shipping cost displays with too many decimals (5.000000) >- Apply patch >- Verify now the shipping cost displays correctly (5.00) > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >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 5dab779f98..a072677dd1 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >@@ -47,7 +47,7 @@ > <input type="text" size="10" id="billingdate" name="billingdate" value="[% billingdate | $KohaDates %]" class="datepicker" /></li> > > <li><label for="shipmentcost">Shipping cost:</label> >- <input type="text" size="10" id="shipmentcost" name="shipmentcost" value="[% shipmentcost | html %]" /></li> >+ <input type="text" size="10" id="shipmentcost" name="shipmentcost" value="[% shipmentcost | $Price on_editing => 1 %]" /></li> > <li><label for="shipment_budget_id">Shipping fund:</label> > <select id="shipment_budget_id" name="shipment_budget_id"> > <option value="">No fund</option> >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22171
:
84935
| 85014