From f4a1f696855e4c18456b6ed691b2ace3af634db0 Mon Sep 17 00:00:00 2001 From: Michael Hafen Date: Fri, 13 Jan 2023 10:49:46 -0700 Subject: [PATCH] Bug 32583 - Restore display of only one item in catalogue/moredetails Content-Type: text/plain; charset="utf-8" Bug 31315 (Remove GetItemsInfo from moredetail) removed the code that limits the items displayed to only one item if the itemnumber was passed as a parameter to the page. This restores that code. Test plan: 1. find a title with multple items. 2. click on an items barcode in the holdings table on the title details page. 3. observe that all items are shown on the catalogue/moredetails page. 4. apply patch. 5. refresh (catalogue/moredetails) page. 6. observe that only the item for the barcode clicked on is shown. --- catalogue/moredetail.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/catalogue/moredetail.pl b/catalogue/moredetail.pl index 90f2de0b07..e99855a40f 100755 --- a/catalogue/moredetail.pl +++ b/catalogue/moredetail.pl @@ -146,6 +146,9 @@ foreach ( keys %{$data} ) { $template->param( "$_" => defined $data->{$_} ? $data->{$_} : '' ); } +if ($itemnumber) { + @items = (grep {$_->itemnumber == $itemnumber} @items); +} my @item_data; foreach my $item (@items){ -- 2.34.1