Bugzilla – Attachment 154764 Details for
Bug 34095
Shipping cost should default to a blank box instead of 0.00
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34095: Adjust logic so that shipment cost is empty if the receiving shipment cost is blank.
Bug-34095-Adjust-logic-so-that-shipment-cost-is-em.patch (text/plain), 1.55 KB, created by
Katrin Fischer
on 2023-08-24 22:36:55 UTC
(
hide
)
Description:
Bug 34095: Adjust logic so that shipment cost is empty if the receiving shipment cost is blank.
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2023-08-24 22:36:55 UTC
Size:
1.55 KB
patch
obsolete
>From bf21c2087a480dcf02bbcc54161f031ea1981cc7 Mon Sep 17 00:00:00 2001 >From: Laura Escamilla <laura.escamilla@bywatersolutions.com> >Date: Fri, 11 Aug 2023 15:36:20 +0000 >Subject: [PATCH] Bug 34095: Adjust logic so that shipment cost is empty if the > receiving shipment cost is blank. >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Signed-off-by: Anneli Ãsterman <anneli.osterman@koha-suomi.fi> >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > 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 e1044e37be..0fdb63890d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt >@@ -92,7 +92,7 @@ > [% IF readonly %] > [% shipmentcost | $Price %] > [% ELSE %] >- <input class="decimal" type="text" size="10" id="shipmentcost" name="shipmentcost" value="[% shipmentcost | $Price on_editing => 1 %]" /> >+ <input class="decimal" type="text" size="10" id="shipmentcost" name="shipmentcost" value="[% IF shipmentcost %][% shipmentcost | $Price on_editing => 1 %][% END %]" /> > [% END %] > </li> > <li> >-- >2.30.2
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 34095
:
154377
|
154499
| 154764