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