From d5acadb60f0bacb9b28d0fe9f4bb8c55efa1503a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 11 Dec 2012 14:24:40 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 9236: FIX delete order when receiving Before this patch the "delete order" links were broken on the receiving page (parcel.pl) Signed-off-by: mathieu saby Before applying the patch, when recieving a parcel, if you delete an order line, Koha tries to open the page of the basket linked to that order, but can not find it. Koha displays "Vendor not found". With the patch, Koha finds the right basket. I Sign off this patch, to be applied with the other patch ("Redirect to the parcel page after deleting an item/order") Signed-off-by: Katrin Fischer --- .../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 877d263..f867d6c 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt @@ -217,10 +217,10 @@ [% IF ( loop_order.left_holds_on_order ) %] Can't delete order
[% ELSE %] - Delete order
+ Delete order
[% END %] [% IF ( loop_order.can_del_bib ) %] - Delete order and catalog record
+ Delete order and catalog record
[% ELSE %] Can't delete order and catalog record
[% END %] -- 1.7.9.5