Bug 11175: Add syspref MaxComponentRecords to remove hardcoded limit
[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 GetMarcBiblio );
36 use C4::Items qw( GetAnalyticsCount GetHostItemsInfo GetItemsInfo );
37 use C4::Circulation qw( GetTransfers );
38 use C4::Reserves;
39 use C4::Serials qw( CountSubscriptionFromBiblionumber SearchSubscriptions GetLatestSerials );
40 use C4::XISBN qw( get_xisbns );
41 use C4::External::Amazon qw( get_amazon_tld );
42 use C4::Search qw( z3950_search_args enabled_staff_search_views new_record_from_zebra );
43 use C4::Tags qw( get_tags );
44 use C4::XSLT qw( XSLTParse4Display );
45 use Koha::DateUtils qw( format_sqldatetime );
46 use C4::HTML5Media;
47 use C4::CourseReserves qw( GetItemCourseReservesInfo );
48 use Koha::AuthorisedValues;
49 use Koha::Biblios;
50 use Koha::CoverImages;
51 use Koha::Illrequests;
52 use Koha::Items;
53 use Koha::ItemTypes;
54 use Koha::Patrons;
55 use Koha::Virtualshelves;
56 use Koha::Plugins;
57 use Koha::SearchEngine::Search;
58 use Koha::SearchEngine::QueryBuilder;
59
60 my $query = CGI->new();
61
62 my $analyze = $query->param('analyze');
63
64 my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user(
65     {
66     template_name   =>  'catalogue/detail.tt',
67         query           => $query,
68         type            => "intranet",
69         flagsrequired   => { catalogue => 1 },
70     }
71 );
72
73 # Determine if we should be offering any enhancement plugin buttons
74 if ( C4::Context->config('enable_plugins') ) {
75     # Only pass plugins that can offer a toolbar button
76     my @plugins = Koha::Plugins->new()->GetPlugins({
77         method => 'intranet_catalog_biblio_enhancements_toolbar_button'
78     });
79     $template->param(
80         plugins => \@plugins,
81     );
82 }
83
84 my $biblionumber = $query->param('biblionumber');
85 $biblionumber = HTML::Entities::encode($biblionumber);
86 my $record       = GetMarcBiblio({ biblionumber => $biblionumber });
87 my $biblio = Koha::Biblios->find( $biblionumber );
88 $template->param( 'biblio', $biblio );
89
90 if ( not defined $record ) {
91     # biblionumber invalid -> report and exit
92     $template->param( unknownbiblionumber => 1,
93                       biblionumber => $biblionumber );
94     output_html_with_http_headers $query, $cookie, $template->output;
95     exit;
96 }
97
98 eval { $biblio->metadata->record };
99 $template->param( decoding_error => $@ );
100
101 if($query->cookie("holdfor")){
102     my $holdfor_patron = Koha::Patrons->find( $query->cookie("holdfor") );
103     if ( $holdfor_patron ) {
104         $template->param(
105             # FIXME Should pass the patron object
106             holdfor => $query->cookie("holdfor"),
107             holdfor_surname => $holdfor_patron->surname,
108             holdfor_firstname => $holdfor_patron->firstname,
109             holdfor_cardnumber => $holdfor_patron->cardnumber,
110         );
111     }
112 }
113
114 if($query->cookie("searchToOrder")){
115     my ( $basketno, $vendorid ) = split( /\//, $query->cookie("searchToOrder") );
116     $template->param(
117         searchtoorder_basketno => $basketno,
118         searchtoorder_vendorid => $vendorid
119     );
120 }
121
122 my $fw           = GetFrameworkCode($biblionumber);
123 my $showallitems = $query->param('showallitems');
124 my $marcflavour  = C4::Context->preference("marcflavour");
125
126 {
127     # XSLT processing of some stuff
128
129     $template->param(
130         XSLTDetailsDisplay => '1',
131         XSLTBloc => XSLTParse4Display(
132             {
133                 biblionumber   => $biblionumber,
134                 record         => $record,
135                 xsl_syspref    => "XSLTDetailsDisplay",
136                 fix_amps       => 1,
137             }
138         ),
139     );
140 }
141
142 $template->param( 'SpineLabelShowPrintOnBibDetails' => C4::Context->preference("SpineLabelShowPrintOnBibDetails") );
143
144 # Catch the exception as Koha::Biblio::Metadata->record can explode if the MARCXML is invalid
145 # Do not propagate it as we already deal with it previously in this script
146 my $coins = eval { $biblio->get_coins };
147 $template->param( ocoins => $coins );
148
149 # some useful variables for enhanced content;
150 # in each case, we're grabbing the first value we find in
151 # the record and normalizing it
152 my $upc = GetNormalizedUPC($record,$marcflavour);
153 my $ean = GetNormalizedEAN($record,$marcflavour);
154 my $oclc = GetNormalizedOCLCNumber($record,$marcflavour);
155 my $isbn = GetNormalizedISBN(undef,$record,$marcflavour);
156
157 $template->param(
158     normalized_upc => $upc,
159     normalized_ean => $ean,
160     normalized_oclc => $oclc,
161     normalized_isbn => $isbn,
162 );
163
164 my $marcnotesarray   = $biblio->get_marc_notes({ marcflavour => $marcflavour });
165
166 my $itemtypes = { map { $_->{itemtype} => $_ } @{ Koha::ItemTypes->search->unblessed } };
167
168 my $dbh = C4::Context->dbh;
169
170 my @all_items = GetItemsInfo( $biblionumber );
171 my @items;
172 my $patron = Koha::Patrons->find( $borrowernumber );
173 for my $itm (@all_items) {
174     push @items, $itm unless ( $itm->{itemlost} && $patron->category->hidelostitems && !$showallitems);
175 }
176
177 # flag indicating existence of at least one item linked via a host record
178 my $hostrecords;
179 # adding items linked via host biblios
180 my @hostitems = GetHostItemsInfo($record);
181 if (@hostitems){
182     $hostrecords =1;
183     push (@items,@hostitems);
184 }
185
186 my $dat = &GetBiblioData($biblionumber);
187
188 #coping with subscriptions
189 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
190 my @subscriptions       = SearchSubscriptions({ biblionumber => $biblionumber, orderby => 'title' });
191 my @subs;
192
193 foreach my $subscription (@subscriptions) {
194     my %cell;
195     my $serials_to_display;
196     $cell{subscriptionid}    = $subscription->{subscriptionid};
197     $cell{subscriptionnotes} = $subscription->{internalnotes};
198     $cell{missinglist}       = $subscription->{missinglist};
199     $cell{librariannote}     = $subscription->{librariannote};
200     $cell{branchcode}        = $subscription->{branchcode};
201     $cell{hasalert}          = $subscription->{hasalert};
202     $cell{callnumber}        = $subscription->{callnumber};
203     $cell{location}          = $subscription->{location};
204     $cell{closed}            = $subscription->{closed};
205     #get the three latest serials.
206     $serials_to_display = $subscription->{staffdisplaycount};
207     $serials_to_display = C4::Context->preference('StaffSerialIssueDisplayCount') unless $serials_to_display;
208     $cell{staffdisplaycount} = $serials_to_display;
209     $cell{latestserials} =
210       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
211     push @subs, \%cell;
212 }
213
214 # Get component parts details
215 my $showcomp = C4::Context->preference('ShowComponentRecords');
216 if ( $showcomp eq 'both' || $showcomp eq 'staff' ) {
217     if ( my $components = $biblio->get_marc_components(C4::Context->preference('MaxComponentRecords')) ) {
218         my $parts;
219         for my $part ( @{$components} ) {
220             $part = C4::Search::new_record_from_zebra( 'biblioserver', $part );
221
222             push @{$parts},
223               XSLTParse4Display(
224                 {
225                     biblionumber => $biblionumber,
226                     record       => $part,
227                     xsl_syspref  => "XSLTResultsDisplay",
228                     fix_amps     => 1,
229                 }
230               );
231         }
232         $template->param( ComponentParts => $parts );
233         $template->param( ComponentPartsQuery => $biblio->get_components_query );
234     }
235 }
236
237 # Get acquisition details
238 if ( C4::Context->preference('AcquisitionDetails') ) {
239     my $orders = Koha::Acquisition::Orders->search(
240         { biblionumber => $biblionumber },
241         {
242             join => 'basketno',
243             order_by => 'basketno.booksellerid'
244         }
245     );    # GetHistory sorted by aqbooksellerid, but does it make sense?
246
247     $template->param(
248         orders => $orders,
249     );
250 }
251
252 if ( C4::Context->preference('suggestion') ) {
253     my $suggestions = Koha::Suggestions->search(
254         {
255             biblionumber => $biblionumber,
256             archived     => 0,
257         },
258         {
259             order_by => { -desc => 'suggesteddate' }
260         }
261     );
262     my $nb_archived_suggestions = Koha::Suggestions->search({ biblionumber => $biblionumber, archived => 1 })->count;
263     $template->param( suggestions => $suggestions, nb_archived_suggestions => $nb_archived_suggestions );
264 }
265
266 if ( defined $dat->{'itemtype'} ) {
267     $dat->{imageurl} = getitemtypeimagelocation( 'intranet', $itemtypes->{ $dat->{itemtype} }{imageurl} );
268 }
269
270 $dat->{'count'} = scalar @all_items + @hostitems;
271 $dat->{'showncount'} = scalar @items + @hostitems;
272 $dat->{'hiddencount'} = scalar @all_items + @hostitems - scalar @items;
273
274 my $shelflocations =
275   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.location' } ) };
276 my $collections =
277   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.ccode' } ) };
278 my $copynumbers =
279   { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $fw, kohafield => 'items.copynumber' } ) };
280 my (@itemloop, @otheritemloop, %itemfields);
281
282 my $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.itemlost', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
283 if ( $mss->count ) {
284     $template->param( itemlostloop => GetAuthorisedValues( $mss->next->authorised_value ) );
285 }
286 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.damaged', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
287 if ( $mss->count ) {
288     $template->param( itemdamagedloop => GetAuthorisedValues( $mss->next->authorised_value ) );
289 }
290 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.withdrawn', authorised_value => { not => undef } });
291 if ( $mss->count ) {
292     $template->param( itemwithdrawnloop => GetAuthorisedValues( $mss->next->authorised_value) );
293 }
294
295 $mss = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw, kohafield => 'items.materials', authorised_value => [ -and => {'!=' => undef }, {'!=' => ''}] });
296 my %materials_map;
297 if ($mss->count) {
298     my $materials_authvals = GetAuthorisedValues($mss->next->authorised_value);
299     if ($materials_authvals) {
300         foreach my $value (@$materials_authvals) {
301             $materials_map{$value->{authorised_value}} = $value->{lib};
302         }
303     }
304 }
305
306 my $analytics_flag;
307 my $materials_flag; # set this if the items have anything in the materials field
308 my $currentbranch = C4::Context->userenv ? C4::Context->userenv->{branch} : undef;
309 if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
310     $template->param(SeparateHoldings => 1);
311 }
312 my $separatebranch = C4::Context->preference('SeparateHoldingsBranch') || 'homebranch';
313 my ( $itemloop_has_images, $otheritemloop_has_images );
314 foreach my $item (@items) {
315     my $itembranchcode = $item->{$separatebranch};
316
317     $item->{imageurl} = defined $item->{itype} ? getitemtypeimagelocation('intranet', $itemtypes->{ $item->{itype} }{imageurl})
318                                                : '';
319
320     $item->{datedue} = format_sqldatetime($item->{datedue});
321
322     #get shelf location and collection code description if they are authorised value.
323     # same thing for copy number
324     my $shelfcode = $item->{'location'};
325     $item->{'location'} = $shelflocations->{$shelfcode} if ( defined( $shelfcode ) && defined($shelflocations) && exists( $shelflocations->{$shelfcode} ) );
326     my $ccode = $item->{'ccode'};
327     $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) );
328     my $copynumber = $item->{'copynumber'};
329     $item->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumber) && defined($copynumbers) && exists( $copynumbers->{$copynumber} ) );
330     foreach (qw(ccode enumchron copynumber stocknumber itemnotes itemnotes_nonpublic uri publisheddate)) { # Warning when removing GetItemsInfo - publisheddate (at least) is not part of the items table
331         $itemfields{$_} = 1 if ( $item->{$_} );
332     }
333
334     # checking for holds
335     my $item_object = Koha::Items->find( $item->{itemnumber} );
336     my $holds = $item_object->current_holds;
337     if ( my $first_hold = $holds->next ) {
338         $item->{first_hold} = $first_hold;
339     }
340
341     if ( my $checkout = $item_object->checkout ) {
342         $item->{CheckedOutFor} = $checkout->patron;
343     }
344
345     # Check the transit status
346     my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($item->{itemnumber});
347     if ( defined( $transfertwhen ) && ( $transfertwhen ne '' ) ) {
348         $item->{transfertwhen} = $transfertwhen;
349         $item->{transfertfrom} = $transfertfrom;
350         $item->{transfertto}   = $transfertto;
351         $item->{nocancel} = 1;
352     }
353
354     foreach my $f (qw( itemnotes )) {
355         if ($item->{$f}) {
356             $item->{$f} =~ s|\n|<br />|g;
357             $itemfields{$f} = 1;
358         }
359     }
360
361     #item has a host number if its biblio number does not match the current bib
362
363     if ($item->{biblionumber} ne $biblionumber){
364         $item->{hostbiblionumber} = $item->{biblionumber};
365         $item->{hosttitle} = GetBiblioData($item->{biblionumber})->{title};
366     }
367         
368
369     if ( $analyze ) {
370         # count if item is used in analytical bibliorecords
371         # The 'countanalytics' flag is only used in the templates if analyze is set
372         my $countanalytics = C4::Context->preference('EasyAnalyticalRecords') ? GetAnalyticsCount($item->{itemnumber}) : 0;
373         if ($countanalytics > 0){
374             $analytics_flag=1;
375             $item->{countanalytics} = $countanalytics;
376         }
377     }
378
379     if (defined($item->{'materials'}) && $item->{'materials'} =~ /\S/){
380         $materials_flag = 1;
381         if (defined $materials_map{ $item->{materials} }) {
382             $item->{materials} = $materials_map{ $item->{materials} };
383         }
384     }
385
386     if ( C4::Context->preference('UseCourseReserves') ) {
387         $item->{'course_reserves'} = GetItemCourseReservesInfo( itemnumber => $item->{'itemnumber'} );
388     }
389
390     if ( C4::Context->preference('IndependentBranches') ) {
391         my $userenv = C4::Context->userenv();
392         if ( not C4::Context->IsSuperLibrarian()
393             and $userenv->{branch} ne $item->{homebranch} ) {
394             $item->{cannot_be_edited} = 1;
395         }
396     }
397
398     if ( C4::Context->preference("LocalCoverImages") == 1 ) {
399         $item->{cover_images} = $item_object->cover_images;
400     }
401
402     if ($currentbranch and C4::Context->preference('SeparateHoldings')) {
403         if ($itembranchcode and $itembranchcode eq $currentbranch) {
404             push @itemloop, $item;
405             $itemloop_has_images++ if $item_object->cover_images->count;
406         } else {
407             push @otheritemloop, $item;
408             $otheritemloop_has_images++ if $item_object->cover_images->count;
409         }
410     } else {
411         push @itemloop, $item;
412         $itemloop_has_images++ if $item_object->cover_images->count;
413     }
414 }
415
416 $template->param(
417     itemloop_has_images      => $itemloop_has_images,
418     otheritemloop_has_images => $otheritemloop_has_images,
419 );
420
421 # Display only one tab if one items list is empty
422 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
423     $template->param(SeparateHoldings => 0);
424     if (scalar(@itemloop) == 0) {
425         @itemloop = @otheritemloop;
426     }
427 }
428
429 my $some_private_shelves = Koha::Virtualshelves->get_some_shelves(
430     {
431         borrowernumber => $borrowernumber,
432         add_allowed    => 1,
433         category       => 1,
434     }
435 );
436 my $some_public_shelves = Koha::Virtualshelves->get_some_shelves(
437     {
438         borrowernumber => $borrowernumber,
439         add_allowed    => 1,
440         category       => 2,
441     }
442 );
443
444
445 $template->param(
446     add_to_some_private_shelves => $some_private_shelves,
447     add_to_some_public_shelves  => $some_public_shelves,
448 );
449
450 $template->param(
451     MARCNOTES   => $marcnotesarray,
452     itemdata_ccode      => $itemfields{ccode},
453     itemdata_enumchron  => $itemfields{enumchron},
454     itemdata_uri        => $itemfields{uri},
455     itemdata_copynumber => $itemfields{copynumber},
456     itemdata_stocknumber => $itemfields{stocknumber},
457     itemdata_publisheddate => $itemfields{publisheddate},
458     volinfo                => $itemfields{enumchron},
459         itemdata_itemnotes  => $itemfields{itemnotes},
460         itemdata_nonpublicnotes => $itemfields{itemnotes_nonpublic},
461     z3950_search_params    => C4::Search::z3950_search_args($dat),
462         hostrecords         => $hostrecords,
463     analytics_flag    => $analytics_flag,
464     C4::Search::enabled_staff_search_views,
465         materials       => $materials_flag,
466 );
467
468 if (C4::Context->preference("AlternateHoldingsField") && scalar @items == 0) {
469     my $fieldspec = C4::Context->preference("AlternateHoldingsField");
470     my $subfields = substr $fieldspec, 3;
471     my $holdingsep = C4::Context->preference("AlternateHoldingsSeparator") || ' ';
472     my @alternateholdingsinfo = ();
473     my @holdingsfields = $record->field(substr $fieldspec, 0, 3);
474
475     for my $field (@holdingsfields) {
476         my %holding = ( holding => '' );
477         my $havesubfield = 0;
478         for my $subfield ($field->subfields()) {
479             if ((index $subfields, $$subfield[0]) >= 0) {
480                 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
481                 $holding{'holding'} .= $$subfield[1];
482                 $havesubfield++;
483             }
484         }
485         if ($havesubfield) {
486             push(@alternateholdingsinfo, \%holding);
487         }
488     }
489
490     $template->param(
491         ALTERNATEHOLDINGS   => \@alternateholdingsinfo,
492         );
493 }
494
495 my @results = ( $dat, );
496 foreach ( keys %{$dat} ) {
497     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
498 }
499
500 # does not work: my %views_enabled = map { $_ => 1 } $template->query(loop => 'EnableViews');
501 # method query not found?!?!
502 $template->param( AmazonTld => get_amazon_tld() ) if ( C4::Context->preference("AmazonCoverImages"));
503 $template->param(
504     itemloop        => \@itemloop,
505     otheritemloop   => \@otheritemloop,
506     biblionumber        => $biblionumber,
507     ($analyze? 'analyze':'detailview') =>1,
508     subscriptions       => \@subs,
509     subscriptionsnumber => $subscriptionsnumber,
510     subscriptiontitle   => $dat->{title},
511     searchid            => scalar $query->param('searchid'),
512 );
513
514 # Lists
515
516 if (C4::Context->preference("virtualshelves") ) {
517     my $shelves = Koha::Virtualshelves->search(
518         {
519             biblionumber => $biblionumber,
520             category => 2,
521         },
522         {
523             join => 'virtualshelfcontents',
524         }
525     );
526     $template->param( 'shelves' => $shelves );
527 }
528
529 # XISBN Stuff
530 if (C4::Context->preference("FRBRizeEditions")==1) {
531     eval {
532         $template->param(
533             XISBNS => scalar get_xisbns($isbn, $biblionumber)
534         );
535     };
536     if ($@) { warn "XISBN Failed $@"; }
537 }
538
539 if ( C4::Context->preference("LocalCoverImages") == 1 ) {
540     my $images = $biblio->cover_images;
541     $template->param( localimages => $biblio->cover_images );
542 }
543
544 # HTML5 Media
545 if ( (C4::Context->preference("HTML5MediaEnabled") eq 'both') or (C4::Context->preference("HTML5MediaEnabled") eq 'staff') ) {
546     $template->param( C4::HTML5Media->gethtml5media($record));
547 }
548
549 # Displaying tags
550 my $tag_quantity;
551 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
552     $template->param(
553         TagsEnabled => 1,
554         TagsShowOnDetail => $tag_quantity
555     );
556     $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
557                                 'sort'=>'-weight', limit=>$tag_quantity}));
558 }
559
560 #we only need to pass the number of holds to the template
561 my $holds = $biblio->holds;
562 $template->param( holdcount => $holds->count );
563
564 # Check if there are any ILL requests connected to the biblio
565 my $illrequests =
566     C4::Context->preference('ILLModule')
567   ? Koha::Illrequests->search( { biblio_id => $biblionumber } )
568   : [];
569 $template->param( illrequests => $illrequests );
570
571 my $StaffDetailItemSelection = C4::Context->preference('StaffDetailItemSelection');
572 if ($StaffDetailItemSelection) {
573     # Only enable item selection if user can execute at least one action
574     if (
575         $flags->{superlibrarian}
576         || (
577             ref $flags->{tools} eq 'HASH' && (
578                 $flags->{tools}->{items_batchmod}       # Modify selected items
579                 || $flags->{tools}->{items_batchdel}    # Delete selected items
580             )
581         )
582         || ( ref $flags->{tools} eq '' && $flags->{tools} )
583       )
584     {
585         $template->param(
586             StaffDetailItemSelection => $StaffDetailItemSelection );
587     }
588 }
589
590 # get biblionumbers stored in the cart
591 my @cart_list;
592
593 if($query->cookie("intranet_bib_list")){
594     my $cart_list = $query->cookie("intranet_bib_list");
595     @cart_list = split(/\//, $cart_list);
596     if ( grep {$_ eq $biblionumber} @cart_list) {
597         $template->param( incart => 1 );
598     }
599 }
600
601 if ( C4::Context->preference('UseCourseReserves') ) {
602     my $course_reserves = GetItemCourseReservesInfo( biblionumber => $biblionumber );
603     $template->param( course_reserves => $course_reserves );
604 }
605
606 $template->param(biblio => $biblio);
607
608 output_html_with_http_headers $query, $cookie, $template->output;