Bug 33497: Don't get host items if the MARC record is invalid
[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 # XSLT processing of some stuff
273 my $xslt_variables = { show_analytics_link => $show_analytics };
274 $template->param(
275     XSLTDetailsDisplay => '1',
276     XSLTBloc => XSLTParse4Display({
277         biblionumber   => $biblionumber,
278         record         => $marc_record,
279         xsl_syspref    => "XSLTDetailsDisplay",
280         fix_amps       => 1,
281         xslt_variables => $xslt_variables,
282     }),
283 );
284
285 # Get acquisition details
286 if ( C4::Context->preference('AcquisitionDetails') ) {
287     my $orders = Koha::Acquisition::Orders->search(
288         { biblionumber => $biblionumber },
289         {
290             join => 'basketno',
291             order_by => 'basketno.booksellerid'
292         }
293     );    # GetHistory sorted by aqbooksellerid, but does it make sense?
294
295     $template->param(
296         orders => $orders,
297     );
298 }
299
300 if ( C4::Context->preference('suggestion') ) {
301     my $suggestions = Koha::Suggestions->search(
302         {
303             biblionumber => $biblionumber,
304             archived     => 0,
305         },
306         {
307             order_by => { -desc => 'suggesteddate' }
308         }
309     );
310     my $nb_archived_suggestions = Koha::Suggestions->search({ biblionumber => $biblionumber, archived => 1 })->count;
311     $template->param( suggestions => $suggestions, nb_archived_suggestions => $nb_archived_suggestions );
312 }
313
314 if ( defined $dat->{'itemtype'} ) {
315     $dat->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $dat->{itemtype} }->imageurl );
316 }
317
318 my (@itemloop, @otheritemloop, %itemfields);
319
320 my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.itemlost', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
321 if ( $mss->count ) {
322     $template->param( itemlostloop => GetAuthorisedValues( $mss->next->authorised_value ) );
323 }
324 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.damaged', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
325 if ( $mss->count ) {
326     $template->param( itemdamagedloop => GetAuthorisedValues( $mss->next->authorised_value ) );
327 }
328 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.withdrawn', authorised_value => { not => undef } });
329 if ( $mss->count ) {
330     $template->param( itemwithdrawnloop => GetAuthorisedValues( $mss->next->authorised_value) );
331 }
332
333 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.materials', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
334 my %materials_map;
335 if ($mss->count) {
336     my $materials_authvals = GetAuthorisedValues($mss->next->authorised_value);
337     if ($materials_authvals) {
338         foreach my $value (@$materials_authvals) {
339             $materials_map{$value->{authorised_value}} = $value->{lib};
340         }
341     }
342 }
343
344 my $analytics_flag;
345 my $materials_flag; # set this if the items have anything in the materials field
346 my $currentbranch = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
347 if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
348     $template->param(SeparateHoldings => 1);
349 }
350 my $separatebranch = C4::Context->preference('SeparateHoldingsBranch') || 'homebranch';
351 my ( $itemloop_has_images, $otheritemloop_has_images );
352
353 while ( my $item = $items->next ) {
354     my $itembranchcode = $item->$separatebranch;
355
356     my $item_info = $item->unblessed;
357     $item_info->{itemtype} = $itemtypes->{$item->effective_itemtype};
358
359     foreach (qw(ccode enumchron copynumber stocknumber itemnotes itemnotes_nonpublic uri )) {
360         $itemfields{$_} = 1 if $item->$_;
361     }
362
363     # FIXME The following must be Koha::Item->serial
364     my $serial_item = Koha::Serial::Items->find($item->itemnumber);
365     if ( $serial_item ) {
366         my $serial = Koha::Serials->find($serial_item->serialid);
367         $item_info->{serial} = $serial if $serial;
368         $itemfields{publisheddate} = 1;
369     }
370
371     $item_info->{object} = $item;
372
373     # checking for holds
374     my $holds = $item->current_holds;
375     if ( my $first_hold = $holds->next ) {
376         $item_info->{first_hold} = $first_hold;
377     }
378
379     #item has a host number if its biblio number does not match the current bib
380
381     if ($item->biblionumber ne $biblionumber){
382         $item_info->{hostbiblionumber} = $item->biblionumber;
383         $item_info->{hosttitle} = $item->biblio->title;
384     }
385
386
387     if ( $analyze ) {
388         # count if item is used in analytical bibliorecords
389         # The 'countanalytics' flag is only used in the templates if analyze is set
390         my $countanalytics = GetAnalyticsCount( $item->itemnumber );
391         if ($countanalytics > 0){
392             $analytics_flag=1;
393             $item_info->{countanalytics} = $countanalytics;
394         }
395     }
396
397     if (defined($item->materials) && $item->materials =~ /\S/){
398         $materials_flag = 1;
399         if (defined $materials_map{ $item->materials }) {
400             $item_info->{materials} = $materials_map{ $item->materials };
401         }
402     }
403
404     if ( C4::Context->preference('UseCourseReserves') ) {
405         $item_info->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $item->itemnumber );
406     }
407
408     $item_info->{can_be_edited} = $patron->can_edit_items_from( $item->homebranch );
409
410     if ( $item->is_bundle ) {
411         $item_info->{bundled} =
412           $item->bundle_items->search( { itemlost => { '!=' => 0 } } )
413           ->count;
414         $item_info->{bundled_lost} =
415           $item->bundle_items->search( { itemlost => 0 } )->count;
416         $item_info->{is_bundle} = 1;
417     }
418
419     if ($item->in_bundle) {
420         $item_info->{bundle_host} = $item->bundle_host;
421     }
422
423     if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
424         if ($itembranchcode and $itembranchcode eq $currentbranch) {
425             push @itemloop, $item_info;
426             $itemloop_has_images++ if $item->cover_images->count;
427         } else {
428             push @otheritemloop, $item_info;
429             $otheritemloop_has_images++ if $item->cover_images->count;
430         }
431     } else {
432         push @itemloop, $item_info;
433         $itemloop_has_images++ if $item->cover_images->count;
434     }
435 }
436
437 $template->param(
438     itemloop_has_images      => $itemloop_has_images,
439     otheritemloop_has_images => $otheritemloop_has_images,
440 );
441
442 # Display only one tab if one items list is empty
443 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
444     $template->param(SeparateHoldings => 0);
445     if (scalar(@itemloop) == 0) {
446         @itemloop = @otheritemloop;
447     }
448 }
449
450 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
451     {
452         borrowernumber => $borrowernumber,
453         add_allowed    => 1,
454         public         => 0,
455     }
456 );
457 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
458     {
459         borrowernumber => $borrowernumber,
460         add_allowed    => 1,
461         public         => 1,
462     }
463 );
464
465
466 $template->param(
467     add_to_some_private_shelves => $some_private_shelves,
468     add_to_some_public_shelves  => $some_public_shelves,
469 );
470
471 $template->param(
472     MARCNOTES               => !$invalid_marc_record ? $biblio->get_marc_notes() : undef,
473     itemdata_ccode          => $itemfields{ccode},
474     itemdata_enumchron      => $itemfields{enumchron},
475     itemdata_uri            => $itemfields{uri},
476     itemdata_copynumber     => $itemfields{copynumber},
477     itemdata_stocknumber    => $itemfields{stocknumber},
478     itemdata_publisheddate  => $itemfields{publisheddate},
479     volinfo                 => $itemfields{enumchron},
480     itemdata_itemnotes      => $itemfields{itemnotes},
481     itemdata_nonpublicnotes => $itemfields{itemnotes_nonpublic},
482     z3950_search_params     => C4::Search::z3950_search_args($dat),
483     hostrecords             => $hostrecords,
484     analytics_flag          => $analytics_flag,
485     C4::Search::enabled_staff_search_views,
486     materials => $materials_flag,
487 );
488
489 if (C4::Context->preference("AlternateHoldingsField") && $items->count == 0) {
490     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
491     my $subfields = substr $fieldspec, 3;
492     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
493     my @alternateholdingsinfo = ();
494     my @holdingsfields = $marc_record->field(substr $fieldspec, 0, 3);
495
496     for my $field (@holdingsfields) {
497         my %holding = ( holding => '' );
498         my $havesubfield = 0;
499         for my $subfield ($field->subfields()) {
500             if ((index $subfields, $$subfield[0]) >= 0) {
501                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
502                 $holding{'holding'} .= $$subfield[1];
503                 $havesubfield++;
504             }
505         }
506         if ($havesubfield) {
507             push(@alternateholdingsinfo, \%holding);
508         }
509     }
510
511     $template->param(
512         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
513         );
514 }
515
516 my @results = ( $dat, );
517 foreach ( keys %{$dat} ) {
518     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
519 }
520
521 # does not work: my %views_enabled = map { $_ => 1 } $template->query(loop => 'EnableViews');
522 # method query not found?!?!
523 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("AmazonCoverImages"));
524 $template->param(
525     itemloop        => \@itemloop,
526     otheritemloop   => \@otheritemloop,
527     biblionumber        => $biblionumber,
528     ($analyze? 'analyze':'detailview') =>1,
529     subscriptions       => \@subs,
530     subscriptionsnumber => $subscriptionsnumber,
531     subscriptiontitle   => $dat->{title},
532     searchid            => scalar $query->param('searchid'),
533 );
534
535 # Lists
536
537 if (C4::Context->preference("virtualshelves") ) {
538     my $shelves = Koha::Virtualshelves->search(
539         {
540             biblionumber => $biblionumber,
541             public => 1,
542         },
543         {
544             join => 'virtualshelfcontents',
545         }
546     );
547     $template->param( 'shelves' => $shelves );
548 }
549
550 # XISBN Stuff
551 if (C4::Context->preference("FRBRizeEditions")==1) {
552     eval {
553         $template->param(
554             XISBNS => scalar get_xisbns($isbn, $biblionumber)
555         );
556     };
557     if ($@) { warn "XISBN Failed $@"; }
558 }
559
560 if ( C4::Context->preference("LocalCoverImages") == 1 ) {
561     my $images = $biblio->cover_images;
562     $template->param(
563         localimages => $biblio->cover_images->search(
564             {}, { order_by => [ \"COALESCE(itemnumber, 0, 1)", 'timestamp' ] }
565         ),
566     );
567 }
568
569 # HTML5 Media
570 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'staff') ) {
571     $template->param( C4::HTML5Media->gethtml5media($marc_record));
572 }
573
574 # Displaying tags
575 my $tag_quantity;
576 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
577     $template->param(
578         TagsEnabled => 1,
579         TagsShowOnDetail => $tag_quantity
580     );
581     $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
582                                 'sort'=>'-weight', limit=>$tag_quantity}));
583 }
584
585 #we only need to pass the number of holds to the template
586 my $holds = $biblio->holds;
587 $template->param( holdcount => $holds->count );
588
589 # Check if there are any ILL requests connected to the biblio
590 my $illrequests =
591     C4::Context->preference('ILLModule')
592   ? Koha::Illrequests->search( { biblio_id => $biblionumber } )
593   : [];
594 $template->param( illrequests => $illrequests );
595
596 my $StaffDetailItemSelection = C4::Context->preference('StaffDetailItemSelection');
597 if ($StaffDetailItemSelection) {
598     # Only enable item selection if user can execute at least one action
599     if (
600         $flags->{superlibrarian}
601         || (
602             ref $flags->{tools} eq 'HASH' && (
603                 $flags->{tools}->{items_batchmod}       # Modify selected items
604                 || $flags->{tools}->{items_batchdel}    # Delete selected items
605             )
606         )
607         || ( ref $flags->{tools} eq '' && $flags->{tools} )
608       )
609     {
610         $template->param(
611             StaffDetailItemSelection => $StaffDetailItemSelection );
612     }
613 }
614
615 # get biblionumbers stored in the cart
616 my @cart_list;
617
618 if($query->cookie("intranet_bib_list")){
619     my $cart_list = $query->cookie("intranet_bib_list");
620     @cart_list = split(/\//, $cart_list);
621     if ( grep {$_ eq $biblionumber} @cart_list) {
622         $template->param( incart => 1 );
623     }
624 }
625
626 if ( C4::Context->preference('UseCourseReserves') ) {
627     my $course_reserves = GetItemCourseReservesInfo( biblionumber => $biblionumber );
628     $template->param( course_reserves => $course_reserves );
629 }
630
631 $template->param(found1 => scalar $query->param('found1') );
632
633 $template->param(biblio => $biblio);
634
635 output_html_with_http_headers $query, $cookie, $template->output;