Merge remote branch 'kc/new/bug_4218' into kcmaster
[koha.git] / opac / opac-detail.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
21 use strict;
22 use warnings;
23
24 use CGI;
25 use C4::Auth;
26 use C4::Branch;
27 use C4::Koha;
28 use C4::Serials;    #uses getsubscriptionfrom biblionumber
29 use C4::Output;
30 use C4::Biblio;
31 use C4::Items;
32 use C4::Circulation;
33 use C4::Tags qw(get_tags);
34 use C4::Dates qw/format_date/;
35 use C4::XISBN qw(get_xisbns get_biblionumber_from_isbn);
36 use C4::External::Amazon;
37 use C4::External::Syndetics qw(get_syndetics_index get_syndetics_summary get_syndetics_toc get_syndetics_excerpt get_syndetics_reviews get_syndetics_anotes );
38 use C4::Review;
39 use C4::Members;
40 use C4::VirtualShelves;
41 use C4::XSLT;
42 use C4::ShelfBrowser;
43
44 BEGIN {
45         if (C4::Context->preference('BakerTaylorEnabled')) {
46                 require C4::External::BakerTaylor;
47                 import C4::External::BakerTaylor qw(&image_url &link_url);
48         }
49 }
50
51 my $query = new CGI;
52 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
53     {
54         template_name   => "opac-detail.tmpl",
55         query           => $query,
56         type            => "opac",
57         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
58         flagsrequired   => { borrow => 1 },
59     }
60 );
61
62 my $biblionumber = $query->param('biblionumber') || $query->param('bib');
63
64 $template->param( 'AllowOnShelfHolds' => C4::Context->preference('AllowOnShelfHolds') );
65 $template->param( 'ItemsIssued' => CountItemsIssued( $biblionumber ) );
66
67 my $record       = GetMarcBiblio($biblionumber);
68 if ( ! $record ) {
69     print $query->redirect("/cgi-bin/koha/errors/404.pl");
70     exit;
71 }
72 $template->param( biblionumber => $biblionumber );
73 # XSLT processing of some stuff
74 if (C4::Context->preference("OPACXSLTDetailsDisplay") ) {
75     $template->param( 'XSLTBloc' => XSLTParse4Display($biblionumber, $record, 'Detail', 'opac') );
76 }
77
78 $template->param('OPACShowCheckoutName' => C4::Context->preference("OPACShowCheckoutName") ); 
79 # change back when ive fixed request.pl
80 my @all_items = &GetItemsInfo( $biblionumber, 'opac' );
81 my @items;
82 @items = @all_items unless C4::Context->preference('hidelostitems');
83
84 if (C4::Context->preference('hidelostitems')) {
85     # Hide host items
86     for my $itm (@all_items) {
87         push @items, $itm unless $itm->{itemlost};
88     }
89 }
90 my $dat = &GetBiblioData($biblionumber);
91
92 my $itemtypes = GetItemTypes();
93 # imageurl:
94 my $itemtype = $dat->{'itemtype'};
95 if ( $itemtype ) {
96     $dat->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
97     $dat->{'description'} = $itemtypes->{$itemtype}->{'description'};
98 }
99 my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'}, 'opac');
100 my $collections =  GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'}, 'opac');
101
102 #coping with subscriptions
103 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
104 my @subscriptions       = GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
105
106 my @subs;
107 $dat->{'serial'}=1 if $subscriptionsnumber;
108 foreach my $subscription (@subscriptions) {
109     my $serials_to_display;
110     my %cell;
111     $cell{subscriptionid}    = $subscription->{subscriptionid};
112     $cell{subscriptionnotes} = $subscription->{notes};
113     $cell{missinglist}       = $subscription->{missinglist};
114     $cell{opacnote}          = $subscription->{opacnote};
115     $cell{histstartdate}     = format_date($subscription->{histstartdate});
116     $cell{histenddate}       = format_date($subscription->{histenddate});
117     $cell{branchcode}        = $subscription->{branchcode};
118     $cell{branchname}        = GetBranchName($subscription->{branchcode});
119     $cell{hasalert}          = $subscription->{hasalert};
120     #get the three latest serials.
121     $serials_to_display = $subscription->{opacdisplaycount};
122     $serials_to_display = C4::Context->preference('OPACSerialIssueDisplayCount') unless $serials_to_display;
123         $cell{opacdisplaycount} = $serials_to_display;
124     $cell{latestserials} =
125       GetLatestSerials( $subscription->{subscriptionid}, $serials_to_display );
126     push @subs, \%cell;
127 }
128
129 $dat->{'count'} = scalar(@items);
130
131 # If there is a lot of items, and the user has not decided
132 # to view them all yet, we first warn him
133 # TODO: The limit of 50 could be a syspref
134 my $viewallitems = $query->param('viewallitems');
135 if ($dat->{'count'} >= 50 && !$viewallitems) {
136     $template->param('lotsofitems' => 1);
137 }
138
139 my $biblio_authorised_value_images = C4::Items::get_authorised_value_images( C4::Biblio::get_biblio_authorised_values( $biblionumber, $record ) );
140
141 my $norequests = 1;
142 my $branches = GetBranches();
143 my %itemfields;
144 for my $itm (@items) {
145     $norequests = 0
146        if ( (not $itm->{'wthdrawn'} )
147          && (not $itm->{'itemlost'} )
148          && ($itm->{'itemnotforloan'}<0 || not $itm->{'itemnotforloan'} )
149                  && (not $itemtypes->{$itm->{'itype'}}->{notforloan} )
150          && ($itm->{'itemnumber'} ) );
151
152     if ( defined $itm->{'publictype'} ) {
153         # I can't actually find any case in which this is defined. --amoore 2008-12-09
154         $itm->{ $itm->{'publictype'} } = 1;
155     }
156     $itm->{datedue}      = format_date($itm->{datedue});
157     $itm->{datelastseen} = format_date($itm->{datelastseen});
158
159     # get collection code description, too
160     if ( my $ccode = $itm->{'ccode'} ) {
161         $itm->{'ccode'} = $collections->{$ccode} if ( defined($collections) && exists( $collections->{$ccode} ) );
162     }
163     if ( defined $itm->{'location'} ) {
164         $itm->{'location_description'} = $shelflocations->{ $itm->{'location'} };
165     }
166     if (exists $itm->{itype} && defined($itm->{itype}) && exists $itemtypes->{ $itm->{itype} }) {
167         $itm->{'imageurl'}    = getitemtypeimagelocation( 'opac', $itemtypes->{ $itm->{itype} }->{'imageurl'} );
168         $itm->{'description'} = $itemtypes->{ $itm->{itype} }->{'description'};
169     }
170     foreach (qw(ccode enumchron copynumber itemnotes uri)) {
171         $itemfields{$_} = 1 if ($itm->{$_});
172     }
173
174      # walk through the item-level authorised values and populate some images
175      my $item_authorised_value_images = C4::Items::get_authorised_value_images( C4::Items::get_item_authorised_values( $itm->{'itemnumber'} ) );
176      # warn( Data::Dumper->Dump( [ $item_authorised_value_images ], [ 'item_authorised_value_images' ] ) );
177
178      if ( $itm->{'itemlost'} ) {
179          my $lostimageinfo = List::Util::first { $_->{'category'} eq 'LOST' } @$item_authorised_value_images;
180          $itm->{'lostimageurl'}   = $lostimageinfo->{ 'imageurl' };
181          $itm->{'lostimagelabel'} = $lostimageinfo->{ 'label' };
182      }
183
184      if( $itm->{'count_reserves'}){
185           if( $itm->{'count_reserves'} eq "Waiting"){ $itm->{'waiting'} = 1; }
186           if( $itm->{'count_reserves'} eq "Reserved"){ $itm->{'onhold'} = 1; }
187      }
188     
189      my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($itm->{itemnumber});
190      if ( defined( $transfertwhen ) && $transfertwhen ne '' ) {
191         $itm->{transfertwhen} = format_date($transfertwhen);
192         $itm->{transfertfrom} = $branches->{$transfertfrom}{branchname};
193         $itm->{transfertto}   = $branches->{$transfertto}{branchname};
194      }
195 }
196
197 ## get notes and subjects from MARC record
198 my $dbh              = C4::Context->dbh;
199 my $marcflavour      = C4::Context->preference("marcflavour");
200 my $marcnotesarray   = GetMarcNotes   ($record,$marcflavour);
201 my $marcisbnsarray   = GetMarcISBN    ($record,$marcflavour);
202 my $marcauthorsarray = GetMarcAuthors ($record,$marcflavour);
203 my $marcsubjctsarray = GetMarcSubjects($record,$marcflavour);
204 my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
205 my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
206 my $subtitle         = GetRecordValue('subtitle', $record, GetFrameworkCode($biblionumber));
207
208     $template->param(
209                      MARCNOTES               => $marcnotesarray,
210                      MARCSUBJCTS             => $marcsubjctsarray,
211                      MARCAUTHORS             => $marcauthorsarray,
212                      MARCSERIES              => $marcseriesarray,
213                      MARCURLS                => $marcurlsarray,
214                      norequests              => $norequests,
215                      RequestOnOpac           => C4::Context->preference("RequestOnOpac"),
216                      itemdata_ccode          => $itemfields{ccode},
217                      itemdata_enumchron      => $itemfields{enumchron},
218                      itemdata_uri            => $itemfields{uri},
219                      itemdata_copynumber     => $itemfields{copynumber},
220                      itemdata_itemnotes          => $itemfields{itemnotes},
221                      authorised_value_images => $biblio_authorised_value_images,
222                      subtitle                => $subtitle,
223     );
224
225 foreach ( keys %{$dat} ) {
226     $template->param( "$_" => defined $dat->{$_} ? $dat->{$_} : '' );
227 }
228
229 # some useful variables for enhanced content;
230 # in each case, we're grabbing the first value we find in
231 # the record and normalizing it
232 my $upc = GetNormalizedUPC($record,$marcflavour);
233 my $ean = GetNormalizedEAN($record,$marcflavour);
234 my $oclc = GetNormalizedOCLCNumber($record,$marcflavour);
235 my $isbn = GetNormalizedISBN(undef,$record,$marcflavour);
236 my $content_identifier_exists = 1 if ($isbn or $ean or $oclc or $upc);
237 $template->param(
238         normalized_upc => $upc,
239         normalized_ean => $ean,
240         normalized_oclc => $oclc,
241         normalized_isbn => $isbn,
242         content_identifier_exists =>  $content_identifier_exists,
243 );
244
245 # COinS format FIXME: for books Only
246 $template->param(
247     ocoins => GetCOinSBiblio($biblionumber),
248 );
249
250 my $reviews = getreviews( $biblionumber, 1 );
251 my $loggedincommenter;
252 foreach ( @$reviews ) {
253     my $borrowerData   = GetMember('borrowernumber' => $_->{borrowernumber});
254     # setting some borrower info into this hash
255     $_->{title}     = $borrowerData->{'title'};
256     $_->{surname}   = $borrowerData->{'surname'};
257     $_->{firstname} = $borrowerData->{'firstname'};
258     $_->{userid}    = $borrowerData->{'userid'};
259     $_->{cardnumber}    = $borrowerData->{'cardnumber'};
260     $_->{datereviewed} = format_date($_->{datereviewed});
261     if ($borrowerData->{'borrowernumber'} eq $borrowernumber) {
262                 $_->{your_comment} = 1;
263                 $loggedincommenter = 1;
264         }
265 }
266
267
268 if(C4::Context->preference("ISBD")) {
269         $template->param(ISBD => 1);
270 }
271
272 $template->param(
273     ITEM_RESULTS        => \@items,
274     subscriptionsnumber => $subscriptionsnumber,
275     biblionumber        => $biblionumber,
276     subscriptions       => \@subs,
277     subscriptionsnumber => $subscriptionsnumber,
278     reviews             => $reviews,
279     loggedincommenter   => $loggedincommenter
280 );
281
282 # Lists
283
284 if (C4::Context->preference("virtualshelves") ) {
285    $template->param( 'GetShelves' => GetBibliosShelves( $biblionumber ) );
286 }
287
288
289 # XISBN Stuff
290 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
291     eval {
292         $template->param(
293             XISBNS => get_xisbns($isbn)
294         );
295     };
296     if ($@) { warn "XISBN Failed $@"; }
297 }
298
299 # Serial Collection
300 my @sc_fields = $record->field(955);
301 my @serialcollections = ();
302
303 foreach my $sc_field (@sc_fields) {
304     my %row_data;
305
306     $row_data{text}    = $sc_field->subfield('r');
307     $row_data{branch}  = $sc_field->subfield('9');
308
309     if ($row_data{text} && $row_data{branch}) { 
310         push (@serialcollections, \%row_data);
311     }
312 }
313
314 if (scalar(@serialcollections) > 0) {
315     $template->param(
316         serialcollection  => 1,
317         serialcollections => \@serialcollections);
318 }
319
320 # Amazon.com Stuff
321 if ( C4::Context->preference("OPACAmazonEnabled") ) {
322     $template->param( AmazonTld => get_amazon_tld() );
323     my $amazon_reviews  = C4::Context->preference("OPACAmazonReviews");
324     my $amazon_similars = C4::Context->preference("OPACAmazonSimilarItems");
325     my @services;
326     if ( $amazon_reviews ) {
327         push( @services, 'EditorialReview', 'Reviews' );
328     }
329     if ( $amazon_similars ) {
330         push( @services, 'Similarities' );
331     }
332     my $amazon_details = &get_amazon_details( $isbn, $record, $marcflavour, \@services );
333     my $similar_products_exist;
334     if ( $amazon_reviews ) {
335         my $item = $amazon_details->{Items}->{Item}->[0];
336         my $customer_reviews = \@{ $item->{CustomerReviews}->{Review} };
337         for my $one_review ( @$customer_reviews ) {
338             $one_review->{Date} = format_date($one_review->{Date});
339         }
340         my $editorial_reviews = \@{ $item->{EditorialReviews}->{EditorialReview} };
341         my $average_rating = $item->{CustomerReviews}->{AverageRating} || 0;
342         $template->param( amazon_average_rating    => $average_rating * 20);
343         $template->param( AMAZON_CUSTOMER_REVIEWS  => $customer_reviews );
344         $template->param( AMAZON_EDITORIAL_REVIEWS => $editorial_reviews );
345     }
346     if ( $amazon_similars ) {
347         my $item = $amazon_details->{Items}->{Item}->[0];
348         my @similar_products;
349         for my $similar_product (@{ $item->{SimilarProducts}->{SimilarProduct} }) {
350             # do we have any of these isbns in our collection?
351             my $similar_biblionumbers = get_biblionumber_from_isbn($similar_product->{ASIN});
352             # verify that there is at least one similar item
353             if (scalar(@$similar_biblionumbers)){
354                 $similar_products_exist++ if ($similar_biblionumbers && $similar_biblionumbers->[0]);
355                 push @similar_products, +{ similar_biblionumbers => $similar_biblionumbers, title => $similar_product->{Title}, ASIN => $similar_product->{ASIN}  };
356             }
357         }
358         $template->param( OPACAmazonSimilarItems => $similar_products_exist );
359         $template->param( AMAZON_SIMILAR_PRODUCTS => \@similar_products );
360     }
361 }
362
363 my $syndetics_elements;
364
365 if ( C4::Context->preference("SyndeticsEnabled") ) {
366     $template->param("SyndeticsEnabled" => 1);
367     $template->param("SyndeticsClientCode" => C4::Context->preference("SyndeticsClientCode"));
368         eval {
369             $syndetics_elements = &get_syndetics_index($isbn,$upc,$oclc);
370             for my $element (values %$syndetics_elements) {
371                 $template->param("Syndetics$element"."Exists" => 1 );
372                 #warn "Exists: "."Syndetics$element"."Exists";
373         }
374     };
375     warn $@ if $@;
376 }
377
378 if ( C4::Context->preference("SyndeticsEnabled")
379         && C4::Context->preference("SyndeticsSummary")
380         && ( exists($syndetics_elements->{'SUMMARY'}) || exists($syndetics_elements->{'AVSUMMARY'}) ) ) {
381         eval {
382             my $syndetics_summary = &get_syndetics_summary($isbn,$upc,$oclc, $syndetics_elements);
383             $template->param( SYNDETICS_SUMMARY => $syndetics_summary );
384         };
385         warn $@ if $@;
386
387 }
388
389 if ( C4::Context->preference("SyndeticsEnabled")
390         && C4::Context->preference("SyndeticsTOC")
391         && exists($syndetics_elements->{'TOC'}) ) {
392         eval {
393     my $syndetics_toc = &get_syndetics_toc($isbn,$upc,$oclc);
394     $template->param( SYNDETICS_TOC => $syndetics_toc );
395         };
396         warn $@ if $@;
397 }
398
399 if ( C4::Context->preference("SyndeticsEnabled")
400     && C4::Context->preference("SyndeticsExcerpt")
401     && exists($syndetics_elements->{'DBCHAPTER'}) ) {
402     eval {
403     my $syndetics_excerpt = &get_syndetics_excerpt($isbn,$upc,$oclc);
404     $template->param( SYNDETICS_EXCERPT => $syndetics_excerpt );
405     };
406         warn $@ if $@;
407 }
408
409 if ( C4::Context->preference("SyndeticsEnabled")
410     && C4::Context->preference("SyndeticsReviews")) {
411     eval {
412     my $syndetics_reviews = &get_syndetics_reviews($isbn,$upc,$oclc,$syndetics_elements);
413     $template->param( SYNDETICS_REVIEWS => $syndetics_reviews );
414     };
415         warn $@ if $@;
416 }
417
418 if ( C4::Context->preference("SyndeticsEnabled")
419     && C4::Context->preference("SyndeticsAuthorNotes")
420         && exists($syndetics_elements->{'ANOTES'}) ) {
421     eval {
422     my $syndetics_anotes = &get_syndetics_anotes($isbn,$upc,$oclc);
423     $template->param( SYNDETICS_ANOTES => $syndetics_anotes );
424     };
425     warn $@ if $@;
426 }
427
428 # LibraryThingForLibraries ID Code and Tabbed View Option
429 if( C4::Context->preference('LibraryThingForLibrariesEnabled') ) 
430
431 $template->param(LibraryThingForLibrariesID =>
432 C4::Context->preference('LibraryThingForLibrariesID') ); 
433 $template->param(LibraryThingForLibrariesTabbedView =>
434 C4::Context->preference('LibraryThingForLibrariesTabbedView') );
435
436
437
438 # Babelthèque
439 if ( C4::Context->preference("Babeltheque") ) {
440     $template->param( 
441         Babeltheque => 1,
442     );
443 }
444
445 # Shelf Browser Stuff
446 if (C4::Context->preference("OPACShelfBrowser")) {
447     # pick the first itemnumber unless one was selected by the user
448     my $starting_itemnumber = $query->param('shelfbrowse_itemnumber'); # || $items[0]->{itemnumber};
449     if (defined($starting_itemnumber)) {
450         $template->param( OpenOPACShelfBrowser => 1) if $starting_itemnumber;
451         my $nearby = GetNearbyItems($starting_itemnumber,3);
452
453         $template->param(
454             starting_homebranch => $nearby->{starting_homebranch}->{description},
455             starting_location => $nearby->{starting_location}->{description},
456             starting_ccode => $nearby->{starting_ccode}->{description},
457             starting_itemnumber => $nearby->{starting_itemnumber},
458             shelfbrowser_prev_itemnumber => $nearby->{prev_itemnumber},
459             shelfbrowser_next_itemnumber => $nearby->{next_itemnumber},
460             shelfbrowser_prev_biblionumber => $nearby->{prev_biblionumber},
461             shelfbrowser_next_biblionumber => $nearby->{next_biblionumber},
462             PREVIOUS_SHELF_BROWSE => $nearby->{prev},
463             NEXT_SHELF_BROWSE => $nearby->{next},
464         );
465     }
466 }
467
468 if (C4::Context->preference("BakerTaylorEnabled")) {
469         $template->param(
470                 BakerTaylorEnabled  => 1,
471                 BakerTaylorImageURL => &image_url(),
472                 BakerTaylorLinkURL  => &link_url(),
473                 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
474         );
475         my ($bt_user, $bt_pass);
476         if ($isbn and
477                 $bt_user = C4::Context->preference('BakerTaylorUsername') and
478                 $bt_pass = C4::Context->preference('BakerTaylorPassword')    )
479         {
480                 $template->param(
481                 BakerTaylorContentURL   =>
482                 sprintf("http://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=%s&Password=%s&ItemKey=%s&Options=Y",
483                                 $bt_user,$bt_pass,$isbn)
484                 );
485         }
486 }
487
488 my $tag_quantity;
489 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
490         $template->param(
491                 TagsEnabled => 1,
492                 TagsShowOnDetail => $tag_quantity,
493                 TagsInputOnDetail => C4::Context->preference('TagsInputOnDetail')
494         );
495         $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
496                                                                 'sort'=>'-weight', limit=>$tag_quantity}));
497 }
498
499 if (C4::Context->preference("OPACURLOpenInNewWindow")) {
500     # These values are going to be read by Javascript, at least in the case
501     # of the google covers
502     $template->param(covernewwindow => 'true');
503 } else {
504     $template->param(covernewwindow => 'false');
505 }
506
507 #Search for title in links
508 my $marccontrolnumber   = GetMarcControlnumber   ($record, $marcflavour);
509
510 if (my $search_for_title = C4::Context->preference('OPACSearchForTitleIn')){
511     $dat->{author} ? $search_for_title =~ s/{AUTHOR}/$dat->{author}/g : $search_for_title =~ s/{AUTHOR}//g;
512     $dat->{title} =~ s/\/+$//; # remove trailing slash
513     $dat->{title} =~ s/\s+$//; # remove trailing space
514     $dat->{title} ? $search_for_title =~ s/{TITLE}/$dat->{title}/g : $search_for_title =~ s/{TITLE}//g;
515     $isbn ? $search_for_title =~ s/{ISBN}/$isbn/g : $search_for_title =~ s/{ISBN}//g;
516     $marccontrolnumber ? $search_for_title =~ s/{CONTROLNUMBER}/$marccontrolnumber/g : $search_for_title =~ s/{CONTROLNUMBER}//g;
517  $template->param('OPACSearchForTitleIn' => $search_for_title);
518 }
519
520 # We try to select the best default tab to show, according to what
521 # the user wants, and what's available for display
522 my $opac_serial_default = C4::Context->preference('opacSerialDefaultTab');
523 my $defaulttab = 
524     $opac_serial_default eq 'subscriptions' && $subscriptionsnumber
525         ? 'subscriptions' :
526     $opac_serial_default eq 'serialcollection' && @serialcollections > 0
527         ? 'serialcollection' :
528     $opac_serial_default eq 'holdings' && $dat->{'count'} > 0
529         ? 'holdings' :
530     $subscriptionsnumber
531         ? 'subscriptions' :
532     @serialcollections > 0 
533         ? 'serialcollection' : 'subscription';
534 $template->param('defaulttab' => $defaulttab);
535
536 output_html_with_http_headers $query, $cookie, $template->output;