Bug 32482: (follow-up) Add markup comments
[koha.git] / catalogue / detail.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
19 use Modern::Perl;
20
21 use CGI qw ( -utf8 );
22 use HTML::Entities;
23 use C4::Auth qw( get_template_and_user );
24 use C4::Context;
25 use C4::Koha qw(
26     GetAuthorisedValues
27     getitemtypeimagelocation
28     GetNormalizedEAN
29     GetNormalizedISBN
30     GetNormalizedOCLCNumber
31     GetNormalizedUPC
32 );
33 use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
34 use C4::Output qw( output_html_with_http_headers );
35 use C4::Biblio qw( GetBiblioData GetFrameworkCode );
36 use C4::Items qw( GetAnalyticsCount );
37 use C4::Reserves;
38 use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
39 use C4::XISBN qw( get_xisbns );
40 use C4::External::Amazon qw( get_amazon_tld );
41 use C4::Search qw( z3950_search_args enabled_staff_search_views new_record_from_zebra );
42 use C4::Tags qw( get_tags );
43 use C4::XSLT qw( XSLTParse4Display );
44 use Koha::DateUtils qw( format_sqldatetime );
45 use C4::HTML5Media;
46 use C4::CourseReserves qw( GetItemCourseReservesInfo );
47 use Koha::AuthorisedValues;
48 use Koha::Biblios;
49 use Koha::Biblio::ItemGroup::Items;
50 use Koha::Biblio::ItemGroups;
51 use Koha::CoverImages;
52 use Koha::DateUtils;
53 use Koha::Illrequests;
54 use Koha::Items;
55 use Koha::ItemTypes;
56 use Koha::Patrons;
57 use Koha::Virtualshelves;
58 use Koha::Plugins;
59 use Koha::Recalls;
60 use Koha::SearchEngine::Search;
61 use Koha::SearchEngine::QueryBuilder;
62 use Koha::Serial::Items;
63
64 my $query = CGI->new();
65
66 my $analyze = $query->param('analyze');
67
68 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user(
69     {
70     template_name   =>  'catalogue/detail.tt',
71         query           => $query,
72         type            => "intranet",
73         flagsrequired   => { catalogue => 1 },
74     }
75 );
76
77 # Determine if we should be offering any enhancement plugin buttons
78 if ( C4::Context->config('enable_plugins') ) {
79     # Only pass plugins that can offer a toolbar button
80     my @plugins = Koha::Plugins->new()->GetPlugins({
81         method => 'intranet_catalog_biblio_enhancements_toolbar_button'
82     });
83     $template->param(
84         plugins => \@plugins,
85     );
86 }
87
88 my $biblionumber = $query->param('biblionumber');
89 $biblionumber = HTML::Entities::encode($biblionumber);
90 my $biblio = Koha::Biblios->find( $biblionumber );
91 $template->param( 'biblio', $biblio );
92
93 unless ( $biblio ) {
94     # biblionumber invalid -> report and exit
95     $template->param( unknownbiblionumber => 1,
96                       biblionumber => $biblionumber );
97     output_html_with_http_headers $query, $cookie, $template->output;
98     exit;
99 }
100
101 my $marc_record = eval { $biblio->metadata->record };
102 my $invalid_marc_record = $@ || !$marc_record;
103 if ($invalid_marc_record) {
104     $template->param( decoding_error => $@ );
105     my $marc_xml = C4::Charset::StripNonXmlChars( $biblio->metadata->metadata );
106
107     $marc_record = eval {
108         MARC::Record::new_from_xml( $marc_xml, 'UTF-8',
109             C4::Context->preference('marcflavour') );
110     };
111 }
112
113 my $op = $query->param('op') || q{};
114 if ( $op eq 'set_item_group' ) {
115     my $item_group_id = $query->param('item_group_id');
116     my @itemnumbers   = $query->multi_param('itemnumber');
117
118     foreach my $item_id (@itemnumbers) {
119         my $item_group_item = Koha::Biblio::ItemGroup::Items->find( { item_id => $item_id } );
120
121         if ($item_group_item) {
122             $item_group_item->item_group_id($item_group_id);
123         }
124         else {
125             $item_group_item = Koha::Biblio::ItemGroup::Item->new(
126                 {
127                     item_id        => $item_id,
128                     item_group_id  => $item_group_id,
129                 }
130             );
131         }
132
133         $item_group_item->store();
134     }
135 }
136 elsif ( $op eq 'unset_item_group' ) {
137     my $item_group_id   = $query->param('item_group_id');
138     my @itemnumbers = $query->multi_param('itemnumber');
139
140     foreach my $item_id (@itemnumbers) {
141         my $item_group_item = Koha::Biblio::ItemGroup::Items->find( { item_id => $item_id } );
142         $item_group_item->delete() if $item_group_item;
143     }
144 }
145
146 if($query->cookie("holdfor")){
147     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
148     if ( $holdfor_patron ) {
149         $template->param(
150             holdfor        => $query->cookie("holdfor"),
151             holdfor_patron => $holdfor_patron,
152         );
153     }
154 }
155
156 if($query->cookie("searchToOrder")){
157     my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
158     $template->param(
159         searchtoorder_basketno => $basketno,
160         searchtoorder_vendorid => $vendorid
161     );
162 }
163
164 my $fw           = GetFrameworkCode($biblionumber);
165 my $showallitems = $query->param('showallitems');
166 my $marcflavour  = C4::Context->preference("marcflavour");
167
168 $template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
169
170 $template->param( ocoins => !$invalid_marc_record ? $biblio->get_coins : undef );
171
172 # some useful variables for enhanced content;
173 # in each case, we're grabbing the first value we find in
174 # the record and normalizing it
175 my $upc = GetNormalizedUPC($marc_record,$marcflavour);
176 my $ean = GetNormalizedEAN($marc_record,$marcflavour);
177 my $oclc = GetNormalizedOCLCNumber($marc_record,$marcflavour);
178 my $isbn = GetNormalizedISBN(undef,$marc_record,$marcflavour);
179 my $content_identifier_exists;
180 if ( $isbn or $ean or $oclc or $upc ) {
181     $content_identifier_exists = 1;
182 }
183
184 $template->param(
185     normalized_upc => $upc,
186     normalized_ean => $ean,
187     normalized_oclc => $oclc,
188     normalized_isbn => $isbn,
189     content_identifier_exists =>  $content_identifier_exists,
190 );
191
192 my $itemtypes = { map { $_->itemtype => $_ } @{ Koha::ItemTypes->search_with_localization->as_list } };
193 my $all_items = $biblio->items->search_ordered;
194 my @items;
195 my $patron = Koha::Patrons->find( $borrowernumber );
196 while ( my $item = $all_items->next ) {
197     push @items, $item
198       unless $item->itemlost
199       && $patron->category->hidelostitems
200       && !$showallitems;
201 }
202
203 # flag indicating existence of at least one item linked via a host record
204 my $hostrecords;
205 # adding items linked via host biblios
206 my $hostitems = $biblio->host_items;
207 if ( $hostitems->count ) {
208     $hostrecords = 1;
209     push @items, $hostitems->as_list;
210 }
211
212 my $dat = &GetBiblioData($biblionumber);
213
214 #is biblio a collection and are bundles enabled
215 my $leader = $marc_record->leader();
216 $dat->{bundlesEnabled} = ( ( substr( $leader, 7, 1 ) eq 'c' )
217       && C4::Context->preference('BundleNotLoanValue') ) ? 1 : 0;
218
219 #coping with subscriptions
220 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
221 my @subscriptions       = SearchSubscriptions({ biblionumber => $biblionumber, orderby => 'title' });
222 my @subs;
223
224 foreach my $subscription (@subscriptions) {
225     my %cell;
226     my $serials_to_display;
227     $cell{subscriptionid}    = $subscription->{subscriptionid};
228     $cell{subscriptionnotes} = $subscription->{internalnotes};
229     $cell{missinglist}       = $subscription->{missinglist};
230     $cell{librariannote}     = $subscription->{librariannote};
231     $cell{branchcode}        = $subscription->{branchcode};
232     $cell{hasalert}          = $subscription->{hasalert};
233     $cell{callnumber}        = $subscription->{callnumber};
234     $cell{location}          = $subscription->{location};
235     $cell{closed}            = $subscription->{closed};
236     #get the three latest serials.
237     $serials_to_display = $subscription->{staffdisplaycount};
238     $serials_to_display = C4::Context->preference('StaffSerialIssueDisplayCount') unless $serials_to_display;
239     $cell{staffdisplaycount} = $serials_to_display;
240     $cell{latestserials} =
241       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
242     push @subs, \%cell;
243 }
244
245 # Get component parts details
246 my $showcomp = C4::Context->preference('ShowComponentRecords');
247 my $show_analytics;
248 if ( $showcomp eq 'both' || $showcomp eq 'staff' ) {
249     if ( my $components = !$invalid_marc_record ? $biblio->get_marc_components(C4::Context->preference('MaxComponentRecords')) : undef ) {
250         $show_analytics = 1 if @{$components}; # just show link when having results
251         $template->param( analytics_error => 1 ) if grep { $_->message eq 'component_search' } @{$biblio->object_messages};
252         my $parts;
253         for my $part ( @{$components} ) {
254             $part = C4::Search::new_record_from_zebra( 'biblioserver', $part );
255             my $id = Koha::SearchEngine::Search::extract_biblionumber( $part );
256
257             push @{$parts},
258               XSLTParse4Display(
259                 {
260                     biblionumber => $id,
261                     record       => $part,
262                     xsl_syspref  => "XSLTResultsDisplay",
263                     fix_amps     => 1,
264                 }
265               );
266         }
267         $template->param( ComponentParts => $parts );
268         my ( $comp_query, $comp_query_str, $comp_sort ) = $biblio->get_components_query;
269         my $cpq = $comp_query_str . "&sort_by=" . $comp_sort;
270         $template->param( ComponentPartsQuery => $cpq );
271     }
272 } else { # check if we should show analytics anyway
273     $show_analytics = 1 if !$invalid_marc_record && @{$biblio->get_marc_components(1)}; # count matters here, results does not
274     $template->param( analytics_error => 1 ) if grep { $_->message eq 'component_search' } @{$biblio->object_messages};
275 }
276
277 # XSLT processing of some stuff
278 my $xslt_variables = { show_analytics_link => $show_analytics };
279 $template->param(
280     XSLTDetailsDisplay => '1',
281     XSLTBloc => XSLTParse4Display({
282         biblionumber   => $biblionumber,
283         record         => $marc_record,
284         xsl_syspref    => "XSLTDetailsDisplay",
285         fix_amps       => 1,
286         xslt_variables => $xslt_variables,
287     }),
288 );
289
290 # Get acquisition details
291 if ( C4::Context->preference('AcquisitionDetails') ) {
292     my $orders = Koha::Acquisition::Orders->search(
293         { biblionumber => $biblionumber },
294         {
295             join => 'basketno',
296             order_by => 'basketno.booksellerid'
297         }
298     );    # GetHistory sorted by aqbooksellerid, but does it make sense?
299
300     $template->param(
301         orders => $orders,
302     );
303 }
304
305 if ( C4::Context->preference('suggestion') ) {
306     my $suggestions = Koha::Suggestions->search(
307         {
308             biblionumber => $biblionumber,
309             archived     => 0,
310         },
311         {
312             order_by => { -desc => 'suggesteddate' }
313         }
314     );
315     my $nb_archived_suggestions = Koha::Suggestions->search({ biblionumber => $biblionumber, archived => 1 })->count;
316     $template->param( suggestions => $suggestions, nb_archived_suggestions => $nb_archived_suggestions );
317 }
318
319 if ( defined $dat->{'itemtype'} ) {
320     $dat->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $dat->{itemtype} }->imageurl );
321 }
322
323 $dat->{'count'} = $all_items->count + $hostitems->count;
324 $dat->{'showncount'} = scalar @items + $hostitems->count;
325 $dat->{'hiddencount'} = $all_items->count + $hostitems->count - scalar @items;
326
327 my $shelflocations =
328   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.location' } ) };
329 my $collections =
330   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.ccode' } ) };
331 my $copynumbers =
332   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.copynumber' } ) };
333 my (@itemloop, @otheritemloop, %itemfields);
334
335 my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.itemlost', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
336 if ( $mss->count ) {
337     $template->param( itemlostloop => GetAuthorisedValues( $mss->next->authorised_value ) );
338 }
339 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.damaged', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
340 if ( $mss->count ) {
341     $template->param( itemdamagedloop => GetAuthorisedValues( $mss->next->authorised_value ) );
342 }
343 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.withdrawn', authorised_value => { not => undef } });
344 if ( $mss->count ) {
345     $template->param( itemwithdrawnloop => GetAuthorisedValues( $mss->next->authorised_value) );
346 }
347
348 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.materials', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
349 my %materials_map;
350 if ($mss->count) {
351     my $materials_authvals = GetAuthorisedValues($mss->next->authorised_value);
352     if ($materials_authvals) {
353         foreach my $value (@$materials_authvals) {
354             $materials_map{$value->{authorised_value}} = $value->{lib};
355         }
356     }
357 }
358
359 my $analytics_flag;
360 my $materials_flag; # set this if the items have anything in the materials field
361 my $currentbranch = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
362 if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
363     $template->param(SeparateHoldings => 1);
364 }
365 my $separatebranch = C4::Context->preference('SeparateHoldingsBranch') || 'homebranch';
366 my ( $itemloop_has_images, $otheritemloop_has_images );
367
368 foreach my $item (@items) {
369     my $itembranchcode = $item->$separatebranch;
370
371     my $item_info = $item->unblessed;
372     $item_info->{itemtype} = $itemtypes->{$item->effective_itemtype};
373
374     #get shelf location and collection code description if they are authorised value.
375     # same thing for copy number
376     my $shelfcode = $item->location;
377     $item_info->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
378     my $ccode = $item->ccode;
379     $item_info->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
380     my $copynumber = $item->copynumber;
381     $item_info->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumber) && defined($copynumbers) && exists( $copynumbers->{$copynumber} ) );
382     foreach (qw(ccode enumchron copynumber stocknumber itemnotes itemnotes_nonpublic uri )) {
383         $itemfields{$_} = 1 if $item->$_;
384     }
385
386     # FIXME The following must be Koha::Item->serial
387     my $serial_item = Koha::Serial::Items->find($item->itemnumber);
388     if ( $serial_item ) {
389         $item_info->{serial} = $serial_item;
390         $itemfields{publisheddate} = 1;
391     }
392
393     $item_info->{object} = $item;
394
395     # checking for holds
396     my $holds = $item->current_holds;
397     if ( my $first_hold = $holds->next ) {
398         $item_info->{first_hold} = $first_hold;
399     }
400
401     $item_info->{checkout} = $item->checkout;
402
403     # Check the transit status
404     my $transfer = $item->get_transfer;
405     if ( $transfer ) {
406         $item_info->{transfer} = $transfer;
407     }
408
409     foreach my $f (qw( itemnotes )) {
410         if ($item_info->{$f}) {
411             $item_info->{$f} =~ s|\n|<br />|g;
412             $itemfields{$f} = 1;
413         }
414     }
415
416     #item has a host number if its biblio number does not match the current bib
417
418     if ($item->biblionumber ne $biblionumber){
419         $item_info->{hostbiblionumber} = $item->biblionumber;
420         $item_info->{hosttitle} = $item->biblio->title;
421     }
422
423
424     if ( $analyze ) {
425         # count if item is used in analytical bibliorecords
426         # The 'countanalytics' flag is only used in the templates if analyze is set
427         my $countanalytics = GetAnalyticsCount( $item->itemnumber );
428         if ($countanalytics > 0){
429             $analytics_flag=1;
430             $item_info->{countanalytics} = $countanalytics;
431         }
432     }
433
434     if (defined($item->materials) && $item->materials =~ /\S/){
435         $materials_flag = 1;
436         if (defined $materials_map{ $item->materials }) {
437             $item_info->{materials} = $materials_map{ $item->materials };
438         }
439     }
440
441     if ( C4::Context->preference('UseCourseReserves') ) {
442         $item_info->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $item->itemnumber );
443     }
444
445     if ( C4::Context->preference("LocalCoverImages") == 1 ) {
446         $item_info->{cover_images} = $item->cover_images;
447     }
448
449     if ( C4::Context->preference('UseRecalls') ) {
450         $item_info->{recall} = $item->recall;
451     }
452
453     if ( C4::Context->preference('IndependentBranches') ) {
454         my $userenv = C4::Context->userenv();
455         if ( not C4::Context->IsSuperLibrarian()
456             and $userenv->{branch} ne $item->homebranch ) {
457             $item_info->{cannot_be_edited} = 1;
458             $item_info->{not_same_branch} = 1;
459         }
460     }
461
462     if ( $item->is_bundle ) {
463         $item_info->{bundled} =
464           $item->bundle_items->search( { itemlost => { '!=' => 0 } } )
465           ->count;
466         $item_info->{bundled_lost} =
467           $item->bundle_items->search( { itemlost => 0 } )->count;
468         $item_info->{is_bundle} = 1;
469     }
470
471     if ($item->in_bundle) {
472         $item_info->{bundle_host} = $item->bundle_host;
473     }
474
475     if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
476         if ($itembranchcode and $itembranchcode eq $currentbranch) {
477             push @itemloop, $item_info;
478             $itemloop_has_images++ if $item->cover_images->count;
479         } else {
480             push @otheritemloop, $item_info;
481             $otheritemloop_has_images++ if $item->cover_images->count;
482         }
483     } else {
484         push @itemloop, $item_info;
485         $itemloop_has_images++ if $item->cover_images->count;
486     }
487 }
488
489 $template->param(
490     itemloop_has_images      => $itemloop_has_images,
491     otheritemloop_has_images => $otheritemloop_has_images,
492 );
493
494 # Display only one tab if one items list is empty
495 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
496     $template->param(SeparateHoldings => 0);
497     if (scalar(@itemloop) == 0) {
498         @itemloop = @otheritemloop;
499     }
500 }
501
502 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
503     {
504         borrowernumber => $borrowernumber,
505         add_allowed    => 1,
506         public         => 0,
507     }
508 );
509 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
510     {
511         borrowernumber => $borrowernumber,
512         add_allowed    => 1,
513         public         => 1,
514     }
515 );
516
517
518 $template->param(
519     add_to_some_private_shelves => $some_private_shelves,
520     add_to_some_public_shelves  => $some_public_shelves,
521 );
522
523 $template->param(
524     MARCNOTES               => !$invalid_marc_record ? $biblio->get_marc_notes() : undef,
525     itemdata_ccode          => $itemfields{ccode},
526     itemdata_enumchron      => $itemfields{enumchron},
527     itemdata_uri            => $itemfields{uri},
528     itemdata_copynumber     => $itemfields{copynumber},
529     itemdata_stocknumber    => $itemfields{stocknumber},
530     itemdata_publisheddate  => $itemfields{publisheddate},
531     volinfo                 => $itemfields{enumchron},
532     itemdata_itemnotes      => $itemfields{itemnotes},
533     itemdata_nonpublicnotes => $itemfields{itemnotes_nonpublic},
534     z3950_search_params     => C4::Search::z3950_search_args($dat),
535     hostrecords             => $hostrecords,
536     analytics_flag          => $analytics_flag,
537     C4::Search::enabled_staff_search_views,
538     materials => $materials_flag,
539 );
540
541 if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) {
542     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
543     my $subfields = substr $fieldspec, 3;
544     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
545     my @alternateholdingsinfo = ();
546     my @holdingsfields = $marc_record->field(substr $fieldspec, 0, 3);
547
548     for my $field (@holdingsfields) {
549         my %holding = ( holding => '' );
550         my $havesubfield = 0;
551         for my $subfield ($field->subfields()) {
552             if ((index $subfields, $$subfield[0]) >= 0) {
553                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
554                 $holding{'holding'} .= $$subfield[1];
555                 $havesubfield++;
556             }
557         }
558         if ($havesubfield) {
559             push(@alternateholdingsinfo, \%holding);
560         }
561     }
562
563     $template->param(
564         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
565         );
566 }
567
568 my @results = ( $dat, );
569 foreach ( keys %{$dat} ) {
570     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
571 }
572
573 # does not work: my %views_enabled = map { $_ => 1 } $template->query(loop => 'EnableViews');
574 # method query not found?!?!
575 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("AmazonCoverImages"));
576 $template->param(
577     itemloop        => \@itemloop,
578     otheritemloop   => \@otheritemloop,
579     biblionumber        => $biblionumber,
580     ($analyze? 'analyze':'detailview') =>1,
581     subscriptions       => \@subs,
582     subscriptionsnumber => $subscriptionsnumber,
583     subscriptiontitle   => $dat->{title},
584     searchid            => scalar $query->param('searchid'),
585 );
586
587 # Lists
588
589 if (C4::Context->preference("virtualshelves") ) {
590     my $shelves = Koha::Virtualshelves->search(
591         {
592             biblionumber => $biblionumber,
593             public => 1,
594         },
595         {
596             join => 'virtualshelfcontents',
597         }
598     );
599     $template->param( 'shelves' => $shelves );
600 }
601
602 # XISBN Stuff
603 if (C4::Context->preference("FRBRizeEditions")==1) {
604     eval {
605         $template->param(
606             XISBNS => scalar get_xisbns($isbn, $biblionumber)
607         );
608     };
609     if ($@) { warn "XISBN Failed $@"; }
610 }
611
612 if ( C4::Context->preference("LocalCoverImages") == 1 ) {
613     my $images = $biblio->cover_images;
614     $template->param(
615         localimages => $biblio->cover_images->search(
616             {}, { order_by => [ \"COALESCE(itemnumber, 0, 1)", 'timestamp' ] }
617         ),
618     );
619 }
620
621 # HTML5 Media
622 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'staff') ) {
623     $template->param( C4::HTML5Media->gethtml5media($marc_record));
624 }
625
626 # Displaying tags
627 my $tag_quantity;
628 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
629     $template->param(
630         TagsEnabled => 1,
631         TagsShowOnDetail => $tag_quantity
632     );
633     $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
634                                 'sort'=>'-weight', limit=>$tag_quantity}));
635 }
636
637 #we only need to pass the number of holds to the template
638 my $holds = $biblio->holds;
639 $template->param( holdcount => $holds->count );
640
641 # Check if there are any ILL requests connected to the biblio
642 my $illrequests =
643     C4::Context->preference('ILLModule')
644   ? Koha::Illrequests->search( { biblio_id => $biblionumber } )
645   : [];
646 $template->param( illrequests => $illrequests );
647
648 my $StaffDetailItemSelection = C4::Context->preference('StaffDetailItemSelection');
649 if ($StaffDetailItemSelection) {
650     # Only enable item selection if user can execute at least one action
651     if (
652         $flags->{superlibrarian}
653         || (
654             ref $flags->{tools} eq 'HASH' && (
655                 $flags->{tools}->{items_batchmod}       # Modify selected items
656                 || $flags->{tools}->{items_batchdel}    # Delete selected items
657             )
658         )
659         || ( ref $flags->{tools} eq '' && $flags->{tools} )
660       )
661     {
662         $template->param(
663             StaffDetailItemSelection => $StaffDetailItemSelection );
664     }
665 }
666
667 # get biblionumbers stored in the cart
668 my @cart_list;
669
670 if($query->cookie("intranet_bib_list")){
671     my $cart_list = $query->cookie("intranet_bib_list");
672     @cart_list = split(/\//, $cart_list);
673     if ( grep {$_ eq $biblionumber} @cart_list) {
674         $template->param( incart => 1 );
675     }
676 }
677
678 if ( C4::Context->preference('UseCourseReserves') ) {
679     my $course_reserves = GetItemCourseReservesInfo( biblionumber => $biblionumber );
680     $template->param( course_reserves => $course_reserves );
681 }
682
683 $template->param(found1 => scalar $query->param('found1') );
684
685 $template->param(biblio => $biblio);
686
687 output_html_with_http_headers $query, $cookie, $template->output;