Bug 34889: (follow-up) Add entry to HTML customization help include
[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 $params;
194 my $patron = Koha::Patrons->find( $borrowernumber );
195 $params->{ itemlost } = 0 if $patron->category->hidelostitems && !$showallitems;
196 my $items_params = {
197     ( $invalid_marc_record ? () : ( host_items => 1 ) ),
198 };
199 my $items = $biblio->items($items_params)->search_ordered( $params, { prefetch => ['issue','current_branchtransfers'] } );
200
201 # flag indicating existence of at least one item linked via a host record
202 my $hostrecords = $biblio->host_items->count;
203
204 my $dat = &GetBiblioData($biblionumber);
205 $dat->{'count'} = $biblio->items($items_params)->count;
206 $dat->{'showncount'} = $items->count;
207 $dat->{'hiddencount'} = $dat->{'count'} - $dat->{'showncount'};
208
209 #is biblio a collection and are bundles enabled
210 my $leader = $marc_record->leader();
211 $dat->{bundlesEnabled} = ( ( substr( $leader, 7, 1 ) eq 'c' )
212       && C4::Context->preference('BundleNotLoanValue') ) ? 1 : 0;
213
214 #coping with subscriptions
215 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
216 my @subscriptions       = SearchSubscriptions({ biblionumber => $biblionumber, orderby => 'title' });
217 my @subs;
218
219 foreach my $subscription (@subscriptions) {
220     my %cell;
221     my $serials_to_display;
222     $cell{subscriptionid}    = $subscription->{subscriptionid};
223     $cell{subscriptionnotes} = $subscription->{internalnotes};
224     $cell{missinglist}       = $subscription->{missinglist};
225     $cell{librariannote}     = $subscription->{librariannote};
226     $cell{branchcode}        = $subscription->{branchcode};
227     $cell{hasalert}          = $subscription->{hasalert};
228     $cell{callnumber}        = $subscription->{callnumber};
229     $cell{location}          = $subscription->{location};
230     $cell{closed}            = $subscription->{closed};
231     #get the three latest serials.
232     $serials_to_display = $subscription->{staffdisplaycount};
233     $serials_to_display = C4::Context->preference('StaffSerialIssueDisplayCount') unless $serials_to_display;
234     $cell{staffdisplaycount} = $serials_to_display;
235     $cell{latestserials} =
236       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
237     push @subs, \%cell;
238 }
239
240 # Get component parts details
241 my $showcomp = C4::Context->preference('ShowComponentRecords');
242 my $show_analytics;
243 if ( $showcomp eq 'both' || $showcomp eq 'staff' ) {
244     if ( my $components = !$invalid_marc_record ? $biblio->get_marc_components(C4::Context->preference('MaxComponentRecords')) : undef ) {
245         $show_analytics = 1 if @{$components}; # just show link when having results
246         $template->param( analytics_error => 1 ) if grep { $_->message eq 'component_search' } @{$biblio->object_messages};
247         my $parts;
248         for my $part ( @{$components} ) {
249             $part = C4::Search::new_record_from_zebra( 'biblioserver', $part );
250             my $id = Koha::SearchEngine::Search::extract_biblionumber( $part );
251
252             push @{$parts},
253               XSLTParse4Display(
254                 {
255                     biblionumber => $id,
256                     record       => $part,
257                     xsl_syspref  => "XSLTResultsDisplay",
258                     fix_amps     => 1,
259                 }
260               );
261         }
262         $template->param( ComponentParts => $parts );
263         my ( $comp_query, $comp_query_str, $comp_sort ) = $biblio->get_components_query;
264         my $cpq = $comp_query_str . "&sort_by=" . $comp_sort;
265         $template->param( ComponentPartsQuery => $cpq );
266     }
267 } else { # check if we should show analytics anyway
268     $show_analytics = 1 if !$invalid_marc_record && @{$biblio->get_marc_components(1)}; # count matters here, results does not
269     $template->param( analytics_error => 1 ) if grep { $_->message eq 'component_search' } @{$biblio->object_messages};
270 }
271
272 # Display volumes link
273 my $show_volumes = ( !$invalid_marc_record && @{ $biblio->get_marc_volumes(1) } ) ? 1 : 0;
274
275 # XSLT processing of some stuff
276 my $xslt_variables = {
277     show_analytics_link => $show_analytics,
278     show_volumes_link   => $show_volumes
279 };
280 $template->param(
281     XSLTDetailsDisplay => '1',
282     XSLTBloc => XSLTParse4Display({
283         biblionumber   => $biblionumber,
284         record         => $marc_record,
285         xsl_syspref    => "XSLTDetailsDisplay",
286         fix_amps       => 1,
287         xslt_variables => $xslt_variables,
288     }),
289 );
290
291 # Get acquisition details
292 if ( C4::Context->preference('AcquisitionDetails') ) {
293     my $orders = Koha::Acquisition::Orders->search(
294         { biblionumber => $biblionumber },
295         {
296             join => 'basketno',
297             order_by => 'basketno.booksellerid'
298         }
299     );    # GetHistory sorted by aqbooksellerid, but does it make sense?
300
301     $template->param(
302         orders => $orders,
303     );
304 }
305
306 if ( C4::Context->preference('suggestion') ) {
307     my $suggestions = Koha::Suggestions->search(
308         {
309             biblionumber => $biblionumber,
310             archived     => 0,
311         },
312         {
313             order_by => { -desc => 'suggesteddate' }
314         }
315     );
316     my $nb_archived_suggestions = Koha::Suggestions->search({ biblionumber => $biblionumber, archived => 1 })->count;
317     $template->param( suggestions => $suggestions, nb_archived_suggestions => $nb_archived_suggestions );
318 }
319
320 if ( defined $dat->{'itemtype'} ) {
321     $dat->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $dat->{itemtype} }->imageurl );
322 }
323
324 my (@itemloop, @otheritemloop, %itemfields);
325
326 my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.itemlost', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
327 if ( $mss->count ) {
328     $template->param( itemlostloop => GetAuthorisedValues( $mss->next->authorised_value ) );
329 }
330 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.damaged', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
331 if ( $mss->count ) {
332     $template->param( itemdamagedloop => GetAuthorisedValues( $mss->next->authorised_value ) );
333 }
334 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.withdrawn', authorised_value => { not => undef } });
335 if ( $mss->count ) {
336     $template->param( itemwithdrawnloop => GetAuthorisedValues( $mss->next->authorised_value) );
337 }
338
339 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.materials', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
340 my %materials_map;
341 if ($mss->count) {
342     my $materials_authvals = GetAuthorisedValues($mss->next->authorised_value);
343     if ($materials_authvals) {
344         foreach my $value (@$materials_authvals) {
345             $materials_map{$value->{authorised_value}} = $value->{lib};
346         }
347     }
348 }
349
350 my $analytics_flag;
351 my $materials_flag; # set this if the items have anything in the materials field
352 my $currentbranch = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
353 if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
354     $template->param(SeparateHoldings => 1);
355 }
356 my $separatebranch = C4::Context->preference('SeparateHoldingsBranch') || 'homebranch';
357 my ( $itemloop_has_images, $otheritemloop_has_images );
358
359 while ( my $item = $items->next ) {
360     my $itembranchcode = $item->$separatebranch;
361
362     my $item_info = $item->unblessed;
363     $item_info->{itemtype} = $itemtypes->{$item->effective_itemtype};
364
365     foreach (qw(ccode enumchron copynumber stocknumber itemnotes itemnotes_nonpublic uri )) {
366         $itemfields{$_} = 1 if $item->$_;
367     }
368
369     # FIXME The following must be Koha::Item->serial
370     my $serial_item = Koha::Serial::Items->find($item->itemnumber);
371     if ( $serial_item ) {
372         my $serial = Koha::Serials->find($serial_item->serialid);
373         $item_info->{serial} = $serial if $serial;
374         $itemfields{publisheddate} = 1;
375     }
376
377     $item_info->{object} = $item;
378
379     # checking for holds
380     my $holds = $item->current_holds;
381     if ( my $first_hold = $holds->next ) {
382         $item_info->{first_hold} = $first_hold;
383     }
384
385     #item has a host number if its biblio number does not match the current bib
386
387     if ($item->biblionumber ne $biblionumber){
388         $item_info->{hostbiblionumber} = $item->biblionumber;
389         $item_info->{hosttitle} = $item->biblio->title;
390     }
391
392
393     if ( $analyze ) {
394         # count if item is used in analytical bibliorecords
395         # The 'countanalytics' flag is only used in the templates if analyze is set
396         my $countanalytics = GetAnalyticsCount( $item->itemnumber );
397         if ($countanalytics > 0){
398             $analytics_flag=1;
399             $item_info->{countanalytics} = $countanalytics;
400         }
401     }
402
403     if (defined($item->materials) && $item->materials =~ /\S/){
404         $materials_flag = 1;
405         if (defined $materials_map{ $item->materials }) {
406             $item_info->{materials} = $materials_map{ $item->materials };
407         }
408     }
409
410     if ( C4::Context->preference('UseCourseReserves') ) {
411         $item_info->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $item->itemnumber );
412     }
413
414     $item_info->{can_be_edited} = $patron->can_edit_items_from( $item->homebranch );
415
416     if ( $item->is_bundle ) {
417         $item_info->{bundled} =
418           $item->bundle_items->search( { itemlost => { '!=' => 0 } } )
419           ->count;
420         $item_info->{bundled_lost} =
421           $item->bundle_items->search( { itemlost => 0 } )->count;
422         $item_info->{is_bundle} = 1;
423     }
424
425     if ($item->in_bundle) {
426         $item_info->{bundle_host} = $item->bundle_host;
427     }
428
429     if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
430         if ($itembranchcode and $itembranchcode eq $currentbranch) {
431             push @itemloop, $item_info;
432             $itemloop_has_images++ if $item->cover_images->count;
433         } else {
434             push @otheritemloop, $item_info;
435             $otheritemloop_has_images++ if $item->cover_images->count;
436         }
437     } else {
438         push @itemloop, $item_info;
439         $itemloop_has_images++ if $item->cover_images->count;
440     }
441 }
442
443 $template->param(
444     itemloop_has_images      => $itemloop_has_images,
445     otheritemloop_has_images => $otheritemloop_has_images,
446 );
447
448 # Display only one tab if one items list is empty
449 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
450     $template->param(SeparateHoldings => 0);
451     if (scalar(@itemloop) == 0) {
452         @itemloop = @otheritemloop;
453     }
454 }
455
456 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
457     {
458         borrowernumber => $borrowernumber,
459         add_allowed    => 1,
460         public         => 0,
461     }
462 );
463 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
464     {
465         borrowernumber => $borrowernumber,
466         add_allowed    => 1,
467         public         => 1,
468     }
469 );
470
471
472 $template->param(
473     add_to_some_private_shelves => $some_private_shelves,
474     add_to_some_public_shelves  => $some_public_shelves,
475 );
476
477 $template->param(
478     MARCNOTES               => !$invalid_marc_record ? $biblio->get_marc_notes() : undef,
479     itemdata_ccode          => $itemfields{ccode},
480     itemdata_enumchron      => $itemfields{enumchron},
481     itemdata_uri            => $itemfields{uri},
482     itemdata_copynumber     => $itemfields{copynumber},
483     itemdata_stocknumber    => $itemfields{stocknumber},
484     itemdata_publisheddate  => $itemfields{publisheddate},
485     volinfo                 => $itemfields{enumchron},
486     itemdata_itemnotes      => $itemfields{itemnotes},
487     itemdata_nonpublicnotes => $itemfields{itemnotes_nonpublic},
488     z3950_search_params     => C4::Search::z3950_search_args($dat),
489     hostrecords             => $hostrecords,
490     analytics_flag          => $analytics_flag,
491     C4::Search::enabled_staff_search_views,
492     materials => $materials_flag,
493 );
494
495 if (C4::Context->preference("AlternateHoldingsField") && $items->count == 0) {
496     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
497     my $subfields = substr $fieldspec, 3;
498     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
499     my @alternateholdingsinfo = ();
500     my @holdingsfields = $marc_record->field(substr $fieldspec, 0, 3);
501
502     for my $field (@holdingsfields) {
503         my %holding = ( holding => '' );
504         my $havesubfield = 0;
505         for my $subfield ($field->subfields()) {
506             if ((index $subfields, $$subfield[0]) >= 0) {
507                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
508                 $holding{'holding'} .= $$subfield[1];
509                 $havesubfield++;
510             }
511         }
512         if ($havesubfield) {
513             push(@alternateholdingsinfo, \%holding);
514         }
515     }
516
517     $template->param(
518         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
519         );
520 }
521
522 my @results = ( $dat, );
523 foreach ( keys %{$dat} ) {
524     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
525 }
526
527 # does not work: my %views_enabled = map { $_ => 1 } $template->query(loop => 'EnableViews');
528 # method query not found?!?!
529 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("AmazonCoverImages"));
530 $template->param(
531     itemloop        => \@itemloop,
532     otheritemloop   => \@otheritemloop,
533     biblionumber        => $biblionumber,
534     ($analyze? 'analyze':'detailview') =>1,
535     subscriptions       => \@subs,
536     subscriptionsnumber => $subscriptionsnumber,
537     subscriptiontitle   => $dat->{title},
538     searchid            => scalar $query->param('searchid'),
539 );
540
541 # Lists
542
543 if (C4::Context->preference("virtualshelves") ) {
544     my $shelves = Koha::Virtualshelves->search(
545         {
546             biblionumber => $biblionumber,
547             public => 1,
548         },
549         {
550             join => 'virtualshelfcontents',
551         }
552     );
553     $template->param( 'shelves' => $shelves );
554 }
555
556 # XISBN Stuff
557 if (C4::Context->preference("FRBRizeEditions")==1) {
558     eval {
559         $template->param(
560             XISBNS => scalar get_xisbns($isbn, $biblionumber)
561         );
562     };
563     if ($@) { warn "XISBN Failed $@"; }
564 }
565
566 if ( C4::Context->preference("LocalCoverImages") == 1 ) {
567     my $images = $biblio->cover_images;
568     $template->param(
569         localimages => $biblio->cover_images->search(
570             {}, { order_by => [ \"COALESCE(itemnumber, 0, 1)", 'timestamp' ] }
571         ),
572     );
573 }
574
575 # HTML5 Media
576 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'staff') ) {
577     $template->param( C4::HTML5Media->gethtml5media($marc_record));
578 }
579
580 # Displaying tags
581 my $tag_quantity;
582 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
583     $template->param(
584         TagsEnabled => 1,
585         TagsShowOnDetail => $tag_quantity
586     );
587     $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
588                                 'sort'=>'-weight', limit=>$tag_quantity}));
589 }
590
591 #we only need to pass the number of holds to the template
592 my $holds = $biblio->holds;
593 $template->param( holdcount => $holds->count );
594
595 # Check if there are any ILL requests connected to the biblio
596 my $illrequests =
597     C4::Context->preference('ILLModule')
598   ? Koha::Illrequests->search( { biblio_id => $biblionumber } )
599   : [];
600 $template->param( illrequests => $illrequests );
601
602 my $StaffDetailItemSelection = C4::Context->preference('StaffDetailItemSelection');
603 if ($StaffDetailItemSelection) {
604     # Only enable item selection if user can execute at least one action
605     if (
606         $flags->{superlibrarian}
607         || (
608             ref $flags->{tools} eq 'HASH' && (
609                 $flags->{tools}->{items_batchmod}       # Modify selected items
610                 || $flags->{tools}->{items_batchdel}    # Delete selected items
611             )
612         )
613         || ( ref $flags->{tools} eq '' && $flags->{tools} )
614       )
615     {
616         $template->param(
617             StaffDetailItemSelection => $StaffDetailItemSelection );
618     }
619 }
620
621 # get biblionumbers stored in the cart
622 my @cart_list;
623
624 if($query->cookie("intranet_bib_list")){
625     my $cart_list = $query->cookie("intranet_bib_list");
626     @cart_list = split(/\//, $cart_list);
627     if ( grep {$_ eq $biblionumber} @cart_list) {
628         $template->param( incart => 1 );
629     }
630 }
631
632 if ( C4::Context->preference('UseCourseReserves') ) {
633     my $course_reserves = GetItemCourseReservesInfo( biblionumber => $biblionumber );
634     $template->param( course_reserves => $course_reserves );
635 }
636
637 $template->param(found1 => scalar $query->param('found1') );
638
639 $template->param(biblio => $biblio);
640
641 output_html_with_http_headers $query, $cookie, $template->output;