From 14a690078a90641abb377d2a2fbda8039f23f5c7 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 19 Aug 2021 12:34:58 +0200 Subject: [PATCH] Bug 28881: (bug 23376 follow-up) Fix suggestion display on order receive page On bug 23376 we replaced $order, from hashref Koha::Acq::Order, but 2 occurrences have not been corrected. It causes a bug on the order receive page when the bib is linked with a suggestion. Test plan: Create an order from bib A, create a suggestion for purchase on bib A (OPAC) Receive the order. Without the patch: Notice the "Suggested by: (suggestion #)" With the patch you see the info of the suggester Signed-off-by: David Nind Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- acqui/orderreceive.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acqui/orderreceive.pl b/acqui/orderreceive.pl index 9d9028c64f..fed1500d23 100755 --- a/acqui/orderreceive.pl +++ b/acqui/orderreceive.pl @@ -167,7 +167,7 @@ $template->param( gst_values => \@gst_values, ); -my $suggestion = GetSuggestionInfoFromBiblionumber($order->{biblionumber}); +my $suggestion = GetSuggestionInfoFromBiblionumber($order->biblionumber); if ( $suggestion ) { $template->param( suggestion => $suggestion ); } @@ -191,7 +191,7 @@ foreach my $period (@$periods) { { b_id => $r->{budget_id}, b_txt => $r->{budget_name}, - b_sel => ( $r->{budget_id} == $order->{budget_id} ) ? 1 : 0, + b_sel => ( $r->{budget_id} == $order->budget_id ) ? 1 : 0, }; } -- 2.39.2