From 75d051929adad1eaf47ecd72bd41d5477c29bc5f Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 11 Mar 2019 16:24:16 +0000 Subject: [PATCH] Bug 21659: Fix links to basket groups from order receive page Fixes a problem with the template variables on the order receive page, so that the links to basket groups work correctly again. To test: - Create some orders with and without basket groups - Receive shipment - Verify that the basket group links for pending orders work right - Receive an order line - Verify that the basket group links for received orders work right --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt index 6ee609c971..9c22794555 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt @@ -132,7 +132,7 @@ [% loop_order.basketname | html %] ([% loop_order.basketno | html %]) [% IF loop_order.basketgroupid %] - [% loop_order.basketgroupname | html %] ([% loop_order.basketgroupid | html %]) + [% loop_order.basketgroupname | html %] ([% loop_order.basketgroupid | html %]) [% ELSE %] No basket group [% END %] @@ -279,7 +279,7 @@ [% order.basketname | html %] ([% order.basketno | html %]) [% IF order.basketgroupid %] - [% order.basketgroupname | html %] ([% order.basketgroupid | html %]) + [% order.basketgroupname | html %] ([% order.basketgroupid | html %]) [% ELSE %] No basket group [% END %] -- 2.11.0