From c6e1f80cb1046112eba674df399a2a2b188e7a6d Mon Sep 17 00:00:00 2001 From: Andreas Roussos Date: Mon, 17 Aug 2020 10:57:03 +0200 Subject: [PATCH] Bug 26223: include item information in OPAC ISBD view The ISBD view in the OPAC interface does not display item information. This patch fixes that. Test plan: 0) Have a biblio with at least one item attached to it and include one of the following snippets in the OPACISBD system preference, depending on your MARC flavour: MARC21: #952|

Items

||
Copy numberShelving locationKoha item typeBarcodeCall number (Full call number)Materials specified (bound volume or other part)
{952t} {952c} {952y} {952p} {952o} {9523}
UNIMARC: #995|

Items

| |
Copy numberShelving locationKoha collectionBarcodeCall number (Full call number)Numbering (volume or other part)
{9956} {995e} {995h} {995f} {995k} {995l}
Switch to the OPAC ISBD view for your biblio; notice how it does not display item information. 1) Apply the patch, and restart Plack/memcached if necessary. 2) Refresh the OPAC ISBD view page, this time you should see item information as per the OPACISBD system preference setting. Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- opac/opac-ISBDdetail.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/opac/opac-ISBDdetail.pl b/opac/opac-ISBDdetail.pl index 567caf4118b..f43475ddfed 100755 --- a/opac/opac-ISBDdetail.pl +++ b/opac/opac-ISBDdetail.pl @@ -99,13 +99,15 @@ unless ( $patron and $patron->category->override_hidden_items ) { } my $record = $biblio->metadata->record; +my @items = grep { !$_->hidden_in_opac({ rules => $opachiddenitems_rules }) } @{$biblio->items->as_list} ; my $marcflavour = C4::Context->preference("marcflavour"); my $record_processor = Koha::RecordProcessor->new({ - filters => 'ViewPolicy', + filters => [ 'ViewPolicy', 'EmbedItems' ], options => { interface => 'opac', - frameworkcode => $biblio->frameworkcode + frameworkcode => $biblio->frameworkcode, + items => \@items } }); $record_processor->process($record); -- 2.33.0