From dbfe016290ad4c638f5f64b57931c580a65c42d3 Mon Sep 17 00:00:00 2001 From: Michael Hafen Date: Fri, 6 Jan 2023 16:11:01 -0700 Subject: [PATCH] Bug 32585 - followup on Bug 32583 - fix some variable references Bug 32583 change the $item variable from a hash to an object. Trivial patch to change some hash references to object method calls. Signed-off-by: David Nind --- catalogue/moredetail.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/catalogue/moredetail.pl b/catalogue/moredetail.pl index f00010dc7c..53e74329a6 100755 --- a/catalogue/moredetail.pl +++ b/catalogue/moredetail.pl @@ -167,12 +167,12 @@ foreach my $item (@items){ # item has a host number if its biblio number does not match the current bib if ($item->biblionumber ne $biblionumber){ - $item_info->{hostbiblionumber} = $item->{biblionumber}; + $item_info->{hostbiblionumber} = $item->biblionumber; $item_info->{hosttitle} = $item->biblio->title; } # FIXME The acquisition code below could be improved using methods from Koha:: objects - my $order = GetOrderFromItemnumber( $item->{'itemnumber'} ); + my $order = GetOrderFromItemnumber( $item->itemnumber ); $item_info->{'basketno'} = $order->{'basketno'}; $item_info->{'orderdate'} = $order->{'entrydate'}; if ($item_info->{'basketno'}){ -- 2.30.2