3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2011 KohaAloha, NZ
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
27 use C4
::Acquisition
qw( SearchOrders );
28 use C4
::Auth
qw(:DEFAULT get_session);
31 use C4
::Serials
; #uses getsubscriptionfrom biblionumber
36 use C4
::Tags
qw(get_tags);
37 use C4
::XISBN
qw(get_xisbns get_biblionumber_from_isbn);
38 use C4
::External
::Amazon
;
39 use C4
::External
::Syndetics
qw(get_syndetics_index get_syndetics_summary get_syndetics_toc get_syndetics_excerpt get_syndetics_reviews get_syndetics_anotes );
49 use List
::MoreUtils qw
/any none/;
53 use C4
::CourseReserves
qw(GetItemCourseReservesInfo);
55 use Koha
::Virtualshelves
;
58 if (C4
::Context
->preference('BakerTaylorEnabled')) {
59 require C4
::External
::BakerTaylor
;
60 import C4
::External
::BakerTaylor
qw(&image_url &link_url);
65 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
67 template_name
=> "opac-detail.tt",
70 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
74 my $biblionumber = $query->param('biblionumber') || $query->param('bib') || 0;
75 $biblionumber = int($biblionumber);
77 my @all_items = GetItemsInfo
($biblionumber);
79 if (scalar @all_items >= 1) {
80 push @hiddenitems, GetHiddenItemnumbers
(@all_items);
82 if (scalar @hiddenitems == scalar @all_items ) {
83 print $query->redirect("/cgi-bin/koha/errors/404.pl"); # escape early
88 my $record = GetMarcBiblio
($biblionumber);
90 print $query->redirect("/cgi-bin/koha/errors/404.pl"); # escape early
94 # redirect if opacsuppression is enabled and biblio is suppressed
95 if (C4
::Context
->preference('OpacSuppression')) {
96 # FIXME hardcoded; the suppression flag ought to be materialized
97 # as a column on biblio or the like
98 my $opacsuppressionfield = '942';
99 my $opacsuppressionfieldvalue = $record->field($opacsuppressionfield);
100 # redirect to opac-blocked info page or 404?
101 my $opacsuppressionredirect;
102 if ( C4
::Context
->preference("OpacSuppressionRedirect") ) {
103 $opacsuppressionredirect = "/cgi-bin/koha/opac-blocked.pl";
105 $opacsuppressionredirect = "/cgi-bin/koha/errors/404.pl";
107 if ( $opacsuppressionfieldvalue &&
108 $opacsuppressionfieldvalue->subfield("n") &&
109 $opacsuppressionfieldvalue->subfield("n") == 1) {
110 # if OPAC suppression by IP address
111 if (C4
::Context
->preference('OpacSuppressionByIPRange')) {
112 my $IPAddress = $ENV{'REMOTE_ADDR'};
113 my $IPRange = C4
::Context
->preference('OpacSuppressionByIPRange');
114 if ($IPAddress !~ /^$IPRange/) {
115 print $query->redirect($opacsuppressionredirect);
119 print $query->redirect($opacsuppressionredirect);
125 $template->param( biblionumber
=> $biblionumber );
127 # get biblionumbers stored in the cart
130 if($query->cookie("bib_list")){
131 my $cart_list = $query->cookie("bib_list");
132 @cart_list = split(/\//, $cart_list);
133 if ( grep {$_ eq $biblionumber} @cart_list) {
134 $template->param( incart
=> 1 );
139 SetUTF8Flag
($record);
140 my $marcflavour = C4
::Context
->preference("marcflavour");
141 my $ean = GetNormalizedEAN
( $record, $marcflavour );
143 # XSLT processing of some stuff
144 if (C4
::Context
->preference("OPACXSLTDetailsDisplay") ) {
145 $template->param( 'XSLTBloc' => XSLTParse4Display
($biblionumber, $record, "OPACXSLTDetailsDisplay" ) );
148 my $OpacBrowseResults = C4
::Context
->preference("OpacBrowseResults");
149 $template->{VARS
}->{'OpacBrowseResults'} = $OpacBrowseResults;
151 # We look for the busc param to build the simple paging from the search
152 if ($OpacBrowseResults) {
153 my $session = get_session
($query->cookie("CGISESSID"));
154 my %paging = (previous
=> {}, next => {});
155 if ($session->param('busc')) {
159 # Rebuild the string to store on session
160 # param value is URI encoded and params separator is HTML encode (&)
163 my $arrParamsBusc = shift;
165 my $pasarParams = '';
167 for (keys %$arrParamsBusc) {
168 if ($_ =~ /^(?:query|listBiblios|newlistBiblios|query_type|simple_query|total|offset|offsetSearch|next|previous|count|expand|scan)/) {
169 if (defined($arrParamsBusc->{$_})) {
170 $pasarParams .= '&' if ($j);
171 $pasarParams .= $_ . '=' . Encode
::decode
('UTF-8', uri_escape_utf8
( $arrParamsBusc->{$_} ));
175 for my $value (@
{$arrParamsBusc->{$_}}) {
176 $pasarParams .= '&' if ($j);
177 $pasarParams .= $_ . '=' . Encode
::decode
('UTF-8', uri_escape_utf8
($value));
185 # Search given the current values from the busc param
188 my ($arrParamsBusc, $offset, $results_per_page) = @_;
190 my $expanded_facet = $arrParamsBusc->{'expand'};
191 my $branches = GetBranches
();
192 my $itemtypes = GetItemTypes
;
194 @servers = @
{$arrParamsBusc->{'server'}} if $arrParamsBusc->{'server'};
195 @servers = ("biblioserver") unless (@servers);
197 my ($default_sort_by, @sort_by);
198 $default_sort_by = C4
::Context
->preference('OPACdefaultSortField')."_".C4
::Context
->preference('OPACdefaultSortOrder') if (C4
::Context
->preference('OPACdefaultSortField') && C4
::Context
->preference('OPACdefaultSortOrder'));
199 @sort_by = @
{$arrParamsBusc->{'sort_by'}} if $arrParamsBusc->{'sort_by'};
200 $sort_by[0] = $default_sort_by if !$sort_by[0] && defined($default_sort_by);
201 my ($error, $results_hashref, $facets);
203 ($error, $results_hashref, $facets) = getRecords
($arrParamsBusc->{'query'},$arrParamsBusc->{'simple_query'},\
@sort_by,\
@servers,$results_per_page,$offset,$expanded_facet,$branches,$itemtypes,$arrParamsBusc->{'query_type'},$arrParamsBusc->{'scan'});
207 for (my $i=0;$i<@servers;$i++) {
208 my $server = $servers[$i];
209 $hits = $results_hashref->{$server}->{"hits"};
210 @newresults = searchResults
('opac', '', $hits, $results_per_page, $offset, $arrParamsBusc->{'scan'}, $results_hashref->{$server}->{"RECORDS"});
215 # Build the current list of biblionumbers in this search
218 my ($newresultsRef, $results_per_page) = @_;
220 my $listBiblios = '';
222 foreach (@
$newresultsRef) {
223 my $bibnum = ($_->{biblionumber
})?
$_->{biblionumber
}:0;
224 $listBiblios .= $bibnum . ',';
226 last if ($j == $results_per_page);
228 chop $listBiblios if ($listBiblios =~ /,$/);
232 my $busc = $session->param("busc");
233 my @arrBusc = split(/\&(?:amp;)?/, $busc);
235 my %arrParamsBusc = ();
237 ($key, $value) = split(/=/, $_, 2);
238 if ($key =~ /^(?:query|listBiblios|newlistBiblios|query_type|simple_query|next|previous|total|offset|offsetSearch|count|expand|scan)/) {
239 $arrParamsBusc{$key} = uri_unescape
($value);
241 unless (exists($arrParamsBusc{$key})) {
242 $arrParamsBusc{$key} = [];
244 push @
{$arrParamsBusc{$key}}, uri_unescape
($value);
248 my $count = C4
::Context
->preference('OPACnumSearchResults') || 20;
249 my $results_per_page = ($arrParamsBusc{'count'} && $arrParamsBusc{'count'} =~ /^[0-9]+?/)?
$arrParamsBusc{'count'}:$count;
250 $arrParamsBusc{'count'} = $results_per_page;
251 my $offset = ($arrParamsBusc{'offset'} && $arrParamsBusc{'offset'} =~ /^[0-9]+?/)?
$arrParamsBusc{'offset'}:0;
252 # The value OPACnumSearchResults has changed and the search has to be rebuild
253 if ($count != $results_per_page) {
254 if (exists($arrParamsBusc{'listBiblios'}) && $arrParamsBusc{'listBiblios'} =~ /^[0-9]+(?:,[0-9]+)*$/) {
256 my @arrBibliosAux = split(',', $arrParamsBusc{'listBiblios'});
257 for (@arrBibliosAux) {
258 last if ($_ == $biblionumber);
261 $indexBiblio += $offset;
262 $offset = int($indexBiblio / $count) * $count;
263 $arrParamsBusc{'offset'} = $offset;
265 $arrParamsBusc{'count'} = $count;
266 $results_per_page = $count;
267 my $newresultsRef = searchAgain
(\
%arrParamsBusc, $offset, $results_per_page);
268 $arrParamsBusc{'listBiblios'} = buildListBiblios
($newresultsRef, $results_per_page);
269 delete $arrParamsBusc{'previous'} if (exists($arrParamsBusc{'previous'}));
270 delete $arrParamsBusc{'next'} if (exists($arrParamsBusc{'next'}));
271 delete $arrParamsBusc{'offsetSearch'} if (exists($arrParamsBusc{'offsetSearch'}));
272 delete $arrParamsBusc{'newlistBiblios'} if (exists($arrParamsBusc{'newlistBiblios'}));
273 my $newbusc = rebuildBuscParam
(\
%arrParamsBusc);
274 $session->param("busc" => $newbusc);
275 @arrBusc = split(/\&(?:amp;)?/, $newbusc);
277 my $modifyListBiblios = 0;
278 # We come from a previous click
279 if (exists($arrParamsBusc{'previous'})) {
280 $modifyListBiblios = 1 if ($biblionumber == $arrParamsBusc{'previous'});
281 delete $arrParamsBusc{'previous'};
282 } elsif (exists($arrParamsBusc{'next'})) { # We come from a next click
283 $modifyListBiblios = 2 if ($biblionumber == $arrParamsBusc{'next'});
284 delete $arrParamsBusc{'next'};
286 if ($modifyListBiblios) {
287 if (exists($arrParamsBusc{'newlistBiblios'})) {
288 my $listBibliosAux = $arrParamsBusc{'listBiblios'};
289 $arrParamsBusc{'listBiblios'} = $arrParamsBusc{'newlistBiblios'};
290 my @arrAux = split(',', $listBibliosAux);
291 $arrParamsBusc{'newlistBiblios'} = $listBibliosAux;
292 if ($modifyListBiblios == 1) {
293 $arrParamsBusc{'next'} = $arrAux[0];
294 $paging{'next'}->{biblionumber
} = $arrAux[0];
296 $arrParamsBusc{'previous'} = $arrAux[$#arrAux];
297 $paging{'previous'}->{biblionumber
} = $arrAux[$#arrAux];
300 delete $arrParamsBusc{'listBiblios'};
302 my $offsetAux = $arrParamsBusc{'offset'};
303 $arrParamsBusc{'offset'} = $arrParamsBusc{'offsetSearch'};
304 $arrParamsBusc{'offsetSearch'} = $offsetAux;
305 $offset = $arrParamsBusc{'offset'};
306 my $newbusc = rebuildBuscParam
(\
%arrParamsBusc);
307 $session->param("busc" => $newbusc);
308 @arrBusc = split(/\&(?:amp;)?/, $newbusc);
313 # Rebuild the query for the button "back to results"
315 unless ($_ =~ /^(?:query|listBiblios|newlistBiblios|query_type|simple_query|next|previous|total|count|offsetSearch)/) {
316 $buscParam .= '&' unless ($j == 0);
317 $buscParam .= $_; # string already URI encoded
321 $template->param('busc' => $buscParam);
324 # We are inside the list of biblios and we don't have to search
325 if (exists($arrParamsBusc{'listBiblios'}) && $arrParamsBusc{'listBiblios'} =~ /^[0-9]+(?:,[0-9]+)*$/) {
326 @arrBiblios = split(',', $arrParamsBusc{'listBiblios'});
328 # We are at the first item of the list
329 if ($arrBiblios[0] == $biblionumber) {
330 if (@arrBiblios > 1) {
331 for (my $j = 1; $j < @arrBiblios; $j++) {
332 next unless ($arrBiblios[$j]);
333 $paging{'next'}->{biblionumber
} = $arrBiblios[$j];
337 # search again if we are not at the first searching list
338 if ($offset && !$arrParamsBusc{'previous'}) {
340 $offsetSearch = $offset - $results_per_page;
342 # we are at the last item of the list
343 } elsif ($arrBiblios[$#arrBiblios] == $biblionumber) {
344 for (my $j = $#arrBiblios - 1; $j >= 0; $j--) {
345 next unless ($arrBiblios[$j]);
346 $paging{'previous'}->{biblionumber
} = $arrBiblios[$j];
350 # search again if we are at the first list and there is more results
351 $searchAgain = 1 if (!$arrParamsBusc{'next'} && $arrParamsBusc{'total'} != @arrBiblios);
353 # search again if we aren't at the first list and there is more results
354 $searchAgain = 1 if (!$arrParamsBusc{'next'} && $arrParamsBusc{'total'} > ($offset + @arrBiblios));
356 $offsetSearch = $offset + $results_per_page if ($searchAgain);
358 for (my $j = 1; $j < $#arrBiblios; $j++) {
359 if ($arrBiblios[$j] == $biblionumber) {
360 for (my $z = $j - 1; $z >= 0; $z--) {
361 next unless ($arrBiblios[$z]);
362 $paging{'previous'}->{biblionumber
} = $arrBiblios[$z];
365 for (my $z = $j + 1; $z < @arrBiblios; $z++) {
366 next unless ($arrBiblios[$z]);
367 $paging{'next'}->{biblionumber
} = $arrBiblios[$z];
375 $offsetSearch = 0 if (defined($offsetSearch) && $offsetSearch < 0);
378 my $newresultsRef = searchAgain
(\
%arrParamsBusc, $offsetSearch, $results_per_page);
379 my @newresults = @
$newresultsRef;
380 # build the new listBiblios
381 my $listBiblios = buildListBiblios
(\
@newresults, $results_per_page);
382 unless (exists($arrParamsBusc{'listBiblios'})) {
383 $arrParamsBusc{'listBiblios'} = $listBiblios;
384 @arrBiblios = split(',', $arrParamsBusc{'listBiblios'});
386 $arrParamsBusc{'newlistBiblios'} = $listBiblios;
388 # From the new list we build again the next and previous result
390 if ($arrBiblios[0] == $biblionumber) {
391 for (my $j = $#newresults; $j >= 0; $j--) {
392 next unless ($newresults[$j]);
393 $paging{'previous'}->{biblionumber
} = $newresults[$j]->{biblionumber
};
394 $arrParamsBusc{'previous'} = $paging{'previous'}->{biblionumber
};
395 $arrParamsBusc{'offsetSearch'} = $offsetSearch;
398 } elsif ($arrBiblios[$#arrBiblios] == $biblionumber) {
399 for (my $j = 0; $j < @newresults; $j++) {
400 next unless ($newresults[$j]);
401 $paging{'next'}->{biblionumber
} = $newresults[$j]->{biblionumber
};
402 $arrParamsBusc{'next'} = $paging{'next'}->{biblionumber
};
403 $arrParamsBusc{'offsetSearch'} = $offsetSearch;
408 # build new busc param
409 my $newbusc = rebuildBuscParam
(\
%arrParamsBusc);
410 $session->param("busc" => $newbusc);
412 my ($numberBiblioPaging, $dataBiblioPaging);
414 $numberBiblioPaging = $paging{'previous'}->{biblionumber
};
415 if ($numberBiblioPaging) {
416 $template->param( 'previousBiblionumber' => $numberBiblioPaging );
417 $dataBiblioPaging = GetBiblioData
($numberBiblioPaging);
418 $template->param('previousTitle' => $dataBiblioPaging->{'title'}) if ($dataBiblioPaging);
421 $numberBiblioPaging = $paging{'next'}->{biblionumber
};
422 if ($numberBiblioPaging) {
423 $template->param( 'nextBiblionumber' => $numberBiblioPaging );
424 $dataBiblioPaging = GetBiblioData
($numberBiblioPaging);
425 $template->param('nextTitle' => $dataBiblioPaging->{'title'}) if ($dataBiblioPaging);
427 # Partial list of biblio results
429 for (my $j = 0; $j < @arrBiblios; $j++) {
430 next unless ($arrBiblios[$j]);
431 $dataBiblioPaging = GetBiblioData
($arrBiblios[$j]) if ($arrBiblios[$j] != $biblionumber);
432 push @listResults, {index => $j + 1 + $offset, biblionumber
=> $arrBiblios[$j], title
=> ($arrBiblios[$j] == $biblionumber)?
'':$dataBiblioPaging->{title
}, author
=> ($arrBiblios[$j] != $biblionumber && $dataBiblioPaging->{author
})?
$dataBiblioPaging->{author
}:'', url
=> ($arrBiblios[$j] == $biblionumber)?
'':'opac-detail.pl?biblionumber=' . $arrBiblios[$j]};
434 $template->param('listResults' => \
@listResults) if (@listResults);
435 $template->param('indexPag' => 1 + $offset, 'totalPag' => $arrParamsBusc{'total'}, 'indexPagEnd' => scalar(@arrBiblios) + $offset);
440 $template->param( 'ItemsIssued' => CountItemsIssued
( $biblionumber ) );
441 $template->param('OPACShowCheckoutName' => C4
::Context
->preference("OPACShowCheckoutName") );
442 $template->param('OPACShowBarcode' => C4
::Context
->preference("OPACShowBarcode") );
444 # adding items linked via host biblios
446 my $analyticfield = '773';
447 if ($marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC'){
448 $analyticfield = '773';
449 } elsif ($marcflavour eq 'UNIMARC') {
450 $analyticfield = '461';
452 foreach my $hostfield ( $record->field($analyticfield)) {
453 my $hostbiblionumber = $hostfield->subfield("0");
454 my $linkeditemnumber = $hostfield->subfield("9");
455 my @hostitemInfos = GetItemsInfo
($hostbiblionumber);
456 foreach my $hostitemInfo (@hostitemInfos){
457 if ($hostitemInfo->{itemnumber
} eq $linkeditemnumber){
458 push(@all_items, $hostitemInfo);
465 # Are there items to hide?
467 $hideitems = 1 if C4
::Context
->preference('hidelostitems') or scalar(@hiddenitems) > 0;
471 for my $itm (@all_items) {
472 if ( C4
::Context
->preference('hidelostitems') ) {
473 push @items, $itm unless $itm->{itemlost
} or any
{ $itm->{'itemnumber'} eq $_ } @hiddenitems;
475 push @items, $itm unless any
{ $itm->{'itemnumber'} eq $_ } @hiddenitems;
483 my $branches = GetBranches
();
485 if (C4
::Context
->userenv){
486 $branch = C4
::Context
->userenv->{branch
};
488 if ( C4
::Context
->preference('HighlightOwnItemsOnOPAC') ) {
490 ( ( C4
::Context
->preference('HighlightOwnItemsOnOPACWhich') eq 'PatronBranch' ) && $branch )
492 C4
::Context
->preference('HighlightOwnItemsOnOPACWhich') eq 'OpacURLBranch'
495 if ( C4
::Context
->preference('HighlightOwnItemsOnOPACWhich') eq 'PatronBranch' ) {
496 $branchname = $branches->{$branch}->{'branchname'};
498 elsif ( C4
::Context
->preference('HighlightOwnItemsOnOPACWhich') eq 'OpacURLBranch' ) {
499 $branchname = $branches->{ $ENV{'BRANCHCODE'} }->{'branchname'};
505 foreach my $item ( @items ) {
506 if ( $item->{'branchname'} eq $branchname ) {
507 $item->{'this_branch'} = 1;
508 push( @our_items, $item );
510 push( @other_items, $item );
514 @items = ( @our_items, @other_items );
518 my $dat = &GetBiblioData
($biblionumber);
520 my $itemtypes = GetItemTypes
();
522 my $itemtype = $dat->{'itemtype'};
524 $dat->{'imageurl'} = getitemtypeimagelocation
( 'opac', $itemtypes->{$itemtype}->{'imageurl'} );
525 $dat->{'description'} = $itemtypes->{$itemtype}->{translated_description
};
527 my $shelflocations =GetKohaAuthorisedValues
('items.location',$dat->{'frameworkcode'}, 'opac');
528 my $collections = GetKohaAuthorisedValues
('items.ccode',$dat->{'frameworkcode'}, 'opac');
529 my $copynumbers = GetKohaAuthorisedValues
('items.copynumber',$dat->{'frameworkcode'}, 'opac');
531 #coping with subscriptions
532 my $subscriptionsnumber = CountSubscriptionFromBiblionumber
($biblionumber);
533 my @subscriptions = SearchSubscriptions
({ biblionumber
=> $biblionumber, orderby
=> 'title' });
536 $dat->{'serial'}=1 if $subscriptionsnumber;
537 foreach my $subscription (@subscriptions) {
538 my $serials_to_display;
540 $cell{subscriptionid
} = $subscription->{subscriptionid
};
541 $cell{subscriptionnotes
} = $subscription->{notes
};
542 $cell{missinglist
} = $subscription->{missinglist
};
543 $cell{opacnote
} = $subscription->{opacnote
};
544 $cell{histstartdate
} = $subscription->{histstartdate
};
545 $cell{histenddate
} = $subscription->{histenddate
};
546 $cell{branchcode
} = $subscription->{branchcode
};
547 $cell{branchname
} = GetBranchName
($subscription->{branchcode
});
548 $cell{hasalert
} = $subscription->{hasalert
};
549 $cell{callnumber
} = $subscription->{callnumber
};
550 $cell{closed
} = $subscription->{closed
};
551 #get the three latest serials.
552 $serials_to_display = $subscription->{opacdisplaycount
};
553 $serials_to_display = C4
::Context
->preference('OPACSerialIssueDisplayCount') unless $serials_to_display;
554 $cell{opacdisplaycount
} = $serials_to_display;
555 $cell{latestserials
} =
556 GetLatestSerials
( $subscription->{subscriptionid
}, $serials_to_display );
560 $dat->{'count'} = scalar(@items);
563 my $biblio_authorised_value_images = C4
::Context
->preference('AuthorisedValueImages')
564 ? C4
::Items
::get_authorised_value_images
( C4
::Biblio
::get_biblio_authorised_values
( $biblionumber, $record ) )
567 my (%item_reserves, %priority);
568 my ($show_holds_count, $show_priority);
569 for ( C4
::Context
->preference("OPACShowHoldQueueDetails") ) {
570 m/holds/o and $show_holds_count = 1;
571 m/priority/ and $show_priority = 1;
574 if ( $show_holds_count || $show_priority) {
575 my $reserves = GetReservesFromBiblionumber
({ biblionumber
=> $biblionumber, all_dates
=> 1 });
576 $template->param( holds_count
=> scalar( @
$reserves ) ) if $show_holds_count;
577 foreach (@
$reserves) {
578 $item_reserves{ $_->{itemnumber
} }++ if $_->{itemnumber
};
579 if ($show_priority && $_->{borrowernumber
} == $borrowernumber) {
582 ?
($priority{ $_->{itemnumber
} } = $_->{priority
})
583 : ($template->param( priority
=> $_->{priority
} ));
587 $template->param( show_priority
=> $has_hold ) ;
591 my (@itemloop, @otheritemloop);
592 my $currentbranch = C4
::Context
->userenv ? C4
::Context
->userenv->{branch
} : undef;
593 if ($currentbranch and C4
::Context
->preference('OpacSeparateHoldings')) {
594 $template->param(SeparateHoldings
=> 1);
596 my $separatebranch = C4
::Context
->preference('OpacSeparateHoldingsBranch');
597 my $viewallitems = $query->param('viewallitems');
598 my $max_items_to_display = C4
::Context
->preference('OpacMaxItemsToDisplay') // 50;
601 my ( @itemnumbers_on_order );
602 if ( C4
::Context
->preference('OPACAcquisitionDetails' ) ) {
603 my $orders = C4
::Acquisition
::SearchOrders
({
604 biblionumber
=> $biblionumber,
607 my $total_quantity = 0;
608 for my $order ( @
$orders ) {
609 if ( C4
::Context
->preference('AcqCreateItem') eq 'ordering' ) {
610 for my $itemnumber ( C4
::Acquisition
::GetItemnumbersFromOrder
( $order->{ordernumber
} ) ) {
611 push @itemnumbers_on_order, $itemnumber;
614 $total_quantity += $order->{quantity
};
616 $template->{VARS
}->{acquisition_details
} = {
617 total_quantity
=> $total_quantity,
621 if ( not $viewallitems and @items > $max_items_to_display ) {
624 items_count
=> scalar( @items ),
627 my $allow_onshelf_holds;
628 my $borrower = GetMember
( 'borrowernumber' => $borrowernumber );
629 for my $itm (@items) {
630 $itm->{holds_count
} = $item_reserves{ $itm->{itemnumber
} };
631 $itm->{priority
} = $priority{ $itm->{itemnumber
} };
634 && !$itm->{'withdrawn'}
635 && !$itm->{'itemlost'}
636 && ($itm->{'itemnotforloan'}<0 || not $itm->{'itemnotforloan'})
637 && !$itemtypes->{$itm->{'itype'}}->{notforloan
}
638 && $itm->{'itemnumber'};
640 $allow_onshelf_holds = C4
::Reserves
::OnShelfHoldsAllowed
( $itm, $borrower )
641 unless $allow_onshelf_holds;
643 # get collection code description, too
644 my $ccode = $itm->{'ccode'};
645 $itm->{'ccode'} = $collections->{$ccode} if defined($ccode) && $collections && exists( $collections->{$ccode} );
646 my $copynumber = $itm->{'copynumber'};
647 $itm->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumbers) && defined($copynumber) && exists( $copynumbers->{$copynumber} ) );
648 if ( defined $itm->{'location'} ) {
649 $itm->{'location_description'} = $shelflocations->{ $itm->{'location'} };
651 if (exists $itm->{itype
} && defined($itm->{itype
}) && exists $itemtypes->{ $itm->{itype
} }) {
652 $itm->{'imageurl'} = getitemtypeimagelocation
( 'opac', $itemtypes->{ $itm->{itype
} }->{'imageurl'} );
653 $itm->{'description'} = $itemtypes->{ $itm->{itype
} }->{translated_description
};
655 foreach (qw(ccode enumchron copynumber itemnotes uri)) {
656 $itemfields{$_} = 1 if ($itm->{$_});
659 # walk through the item-level authorised values and populate some images
660 my $item_authorised_value_images = C4
::Items
::get_authorised_value_images
( C4
::Items
::get_item_authorised_values
( $itm->{'itemnumber'} ) );
661 # warn( Data::Dumper->Dump( [ $item_authorised_value_images ], [ 'item_authorised_value_images' ] ) );
663 if ( $itm->{'itemlost'} ) {
664 my $lostimageinfo = List
::Util
::first
{ $_->{'category'} eq 'LOST' } @
$item_authorised_value_images;
665 $itm->{'lostimageurl'} = $lostimageinfo->{ 'imageurl' };
666 $itm->{'lostimagelabel'} = $lostimageinfo->{ 'label' };
668 my $reserve_status = C4
::Reserves
::GetReserveStatus
($itm->{itemnumber
});
669 if( $reserve_status eq "Waiting"){ $itm->{'waiting'} = 1; }
670 if( $reserve_status eq "Reserved"){ $itm->{'onhold'} = 1; }
672 my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers
($itm->{itemnumber
});
673 if ( defined( $transfertwhen ) && $transfertwhen ne '' ) {
674 $itm->{transfertwhen
} = $transfertwhen;
675 $itm->{transfertfrom
} = $branches->{$transfertfrom}{branchname
};
676 $itm->{transfertto
} = $branches->{$transfertto}{branchname
};
679 if ( C4
::Context
->preference('OPACAcquisitionDetails')
680 and C4
::Context
->preference('AcqCreateItem') eq 'ordering' )
683 if grep /^$itm->{itemnumber}$/, @itemnumbers_on_order;
686 my $itembranch = $itm->{$separatebranch};
687 if ($currentbranch and C4
::Context
->preference('OpacSeparateHoldings')) {
688 if ($itembranch and $itembranch eq $currentbranch) {
689 push @itemloop, $itm;
691 push @otheritemloop, $itm;
694 push @itemloop, $itm;
697 $template->param( 'AllowOnShelfHolds' => $allow_onshelf_holds );
700 # Display only one tab if one items list is empty
701 if (scalar(@itemloop) == 0 || scalar(@otheritemloop) == 0) {
702 $template->param(SeparateHoldings
=> 0);
703 if (scalar(@itemloop) == 0) {
704 @itemloop = @otheritemloop;
708 ## get notes and subjects from MARC record
709 if (!C4
::Context
->preference("OPACXSLTDetailsDisplay") ) {
710 my $marcisbnsarray = GetMarcISBN
($record,$marcflavour);
711 my $marcauthorsarray = GetMarcAuthors
($record,$marcflavour);
712 my $marcsubjctsarray = GetMarcSubjects
($record,$marcflavour);
713 my $marcseriesarray = GetMarcSeries
($record,$marcflavour);
714 my $marcurlsarray = GetMarcUrls
($record,$marcflavour);
715 my $marchostsarray = GetMarcHosts
($record,$marcflavour);
718 MARCSUBJCTS
=> $marcsubjctsarray,
719 MARCAUTHORS
=> $marcauthorsarray,
720 MARCSERIES
=> $marcseriesarray,
721 MARCURLS
=> $marcurlsarray,
722 MARCISBNS
=> $marcisbnsarray,
723 MARCHOSTS
=> $marchostsarray,
727 my $marcnotesarray = GetMarcNotes
($record,$marcflavour);
728 my $subtitle = GetRecordValue
('subtitle', $record, GetFrameworkCode
($biblionumber));
731 MARCNOTES
=> $marcnotesarray,
732 norequests
=> $norequests,
733 RequestOnOpac
=> C4
::Context
->preference("RequestOnOpac"),
734 itemdata_ccode
=> $itemfields{ccode
},
735 itemdata_enumchron
=> $itemfields{enumchron
},
736 itemdata_uri
=> $itemfields{uri
},
737 itemdata_copynumber
=> $itemfields{copynumber
},
738 itemdata_itemnotes
=> $itemfields{itemnotes
},
739 authorised_value_images
=> $biblio_authorised_value_images,
740 subtitle
=> $subtitle,
741 OpacStarRatings
=> C4
::Context
->preference("OpacStarRatings"),
744 if (C4
::Context
->preference("AlternateHoldingsField") && scalar @items == 0) {
745 my $fieldspec = C4
::Context
->preference("AlternateHoldingsField");
746 my $subfields = substr $fieldspec, 3;
747 my $holdingsep = C4
::Context
->preference("AlternateHoldingsSeparator") || ' ';
748 my @alternateholdingsinfo = ();
749 my @holdingsfields = $record->field(substr $fieldspec, 0, 3);
751 for my $field (@holdingsfields) {
752 my %holding = ( holding
=> '' );
753 my $havesubfield = 0;
754 for my $subfield ($field->subfields()) {
755 if ((index $subfields, $$subfield[0]) >= 0) {
756 $holding{'holding'} .= $holdingsep if (length $holding{'holding'} > 0);
757 $holding{'holding'} .= $$subfield[1];
762 push(@alternateholdingsinfo, \
%holding);
767 ALTERNATEHOLDINGS
=> \
@alternateholdingsinfo,
771 foreach ( keys %{$dat} ) {
772 $template->param( "$_" => defined $dat->{$_} ?
$dat->{$_} : '' );
775 # some useful variables for enhanced content;
776 # in each case, we're grabbing the first value we find in
777 # the record and normalizing it
778 my $upc = GetNormalizedUPC
($record,$marcflavour);
779 my $oclc = GetNormalizedOCLCNumber
($record,$marcflavour);
780 my $isbn = GetNormalizedISBN
(undef,$record,$marcflavour);
781 my $content_identifier_exists;
782 if ( $isbn or $ean or $oclc or $upc ) {
783 $content_identifier_exists = 1;
786 normalized_upc
=> $upc,
787 normalized_ean
=> $ean,
788 normalized_oclc
=> $oclc,
789 normalized_isbn
=> $isbn,
790 content_identifier_exists
=> $content_identifier_exists,
793 # COinS format FIXME: for books Only
795 ocoins
=> GetCOinSBiblio
($record),
798 my $libravatar_enabled = 0;
799 if ( C4
::Context
->preference('ShowReviewer') and C4
::Context
->preference('ShowReviewerPhoto')) {
801 require Libravatar
::URL
;
802 Libravatar
::URL
->import();
805 $libravatar_enabled = 1;
809 my $reviews = getreviews
( $biblionumber, 1 );
810 my $loggedincommenter;
815 foreach ( @
$reviews ) {
816 my $borrowerData = GetMember
('borrowernumber' => $_->{borrowernumber
});
817 # setting some borrower info into this hash
818 $_->{title
} = $borrowerData->{'title'};
819 $_->{surname
} = $borrowerData->{'surname'};
820 $_->{firstname
} = $borrowerData->{'firstname'};
821 if ($libravatar_enabled and $borrowerData->{'email'}) {
822 $_->{avatarurl
} = libravatar_url
(email
=> $borrowerData->{'email'}, https
=> $ENV{HTTPS
});
824 $_->{userid
} = $borrowerData->{'userid'};
825 $_->{cardnumber
} = $borrowerData->{'cardnumber'};
827 if ($borrowerData->{'borrowernumber'} eq $borrowernumber) {
828 $_->{your_comment
} = 1;
829 $loggedincommenter = 1;
834 if(C4
::Context
->preference("ISBD")) {
835 $template->param(ISBD
=> 1);
839 itemloop
=> \
@itemloop,
840 otheritemloop
=> \
@otheritemloop,
841 subscriptionsnumber
=> $subscriptionsnumber,
842 biblionumber
=> $biblionumber,
843 subscriptions
=> \
@subs,
844 subscriptionsnumber
=> $subscriptionsnumber,
846 loggedincommenter
=> $loggedincommenter
850 if (C4
::Context
->preference("virtualshelves") ) {
851 my $shelves = Koha
::Virtualshelves
->search(
853 biblionumber
=> $biblionumber,
857 join => 'virtualshelfcontents',
860 $template->param( shelves
=> $shelves );
864 if (C4
::Context
->preference("OPACFRBRizeEditions")==1) {
867 XISBNS
=> get_xisbns
($isbn)
870 if ($@
) { warn "XISBN Failed $@"; }
874 my @sc_fields = $record->field(955);
875 my @lc_fields = $marcflavour eq 'UNIMARC'
876 ?
$record->field(930)
877 : $record->field(852);
878 my @serialcollections = ();
880 foreach my $sc_field (@sc_fields) {
883 $row_data{text
} = $sc_field->subfield('r');
884 $row_data{branch
} = $sc_field->subfield('9');
885 foreach my $lc_field (@lc_fields) {
886 $row_data{itemcallnumber
} = $marcflavour eq 'UNIMARC'
887 ?
$lc_field->subfield('a') # 930$a
888 : $lc_field->subfield('h') # 852$h
889 if ($sc_field->subfield('5') eq $lc_field->subfield('5'));
892 if ($row_data{text
} && $row_data{branch
}) {
893 push (@serialcollections, \
%row_data);
897 if (scalar(@serialcollections) > 0) {
899 serialcollection
=> 1,
900 serialcollections
=> \
@serialcollections);
903 # Local cover Images stuff
904 if (C4
::Context
->preference("OPACLocalCoverImages")){
905 $template->param(OPACLocalCoverImages
=> 1);
909 if ( (C4
::Context
->preference("HTML5MediaEnabled") eq 'both') or (C4
::Context
->preference("HTML5MediaEnabled") eq 'opac') ) {
910 $template->param( C4
::HTML5Media
->gethtml5media($record));
913 my $syndetics_elements;
915 if ( C4
::Context
->preference("SyndeticsEnabled") ) {
916 $template->param("SyndeticsEnabled" => 1);
917 $template->param("SyndeticsClientCode" => C4
::Context
->preference("SyndeticsClientCode"));
919 $syndetics_elements = &get_syndetics_index
($isbn,$upc,$oclc);
920 for my $element (values %$syndetics_elements) {
921 $template->param("Syndetics$element"."Exists" => 1 );
922 #warn "Exists: "."Syndetics$element"."Exists";
928 if ( C4
::Context
->preference("SyndeticsEnabled")
929 && C4
::Context
->preference("SyndeticsSummary")
930 && ( exists($syndetics_elements->{'SUMMARY'}) || exists($syndetics_elements->{'AVSUMMARY'}) ) ) {
932 my $syndetics_summary = &get_syndetics_summary
($isbn,$upc,$oclc, $syndetics_elements);
933 $template->param( SYNDETICS_SUMMARY
=> $syndetics_summary );
939 if ( C4
::Context
->preference("SyndeticsEnabled")
940 && C4
::Context
->preference("SyndeticsTOC")
941 && exists($syndetics_elements->{'TOC'}) ) {
943 my $syndetics_toc = &get_syndetics_toc
($isbn,$upc,$oclc);
944 $template->param( SYNDETICS_TOC
=> $syndetics_toc );
949 if ( C4
::Context
->preference("SyndeticsEnabled")
950 && C4
::Context
->preference("SyndeticsExcerpt")
951 && exists($syndetics_elements->{'DBCHAPTER'}) ) {
953 my $syndetics_excerpt = &get_syndetics_excerpt
($isbn,$upc,$oclc);
954 $template->param( SYNDETICS_EXCERPT
=> $syndetics_excerpt );
959 if ( C4
::Context
->preference("SyndeticsEnabled")
960 && C4
::Context
->preference("SyndeticsReviews")) {
962 my $syndetics_reviews = &get_syndetics_reviews
($isbn,$upc,$oclc,$syndetics_elements);
963 $template->param( SYNDETICS_REVIEWS
=> $syndetics_reviews );
968 if ( C4
::Context
->preference("SyndeticsEnabled")
969 && C4
::Context
->preference("SyndeticsAuthorNotes")
970 && exists($syndetics_elements->{'ANOTES'}) ) {
972 my $syndetics_anotes = &get_syndetics_anotes
($isbn,$upc,$oclc);
973 $template->param( SYNDETICS_ANOTES
=> $syndetics_anotes );
978 # LibraryThingForLibraries ID Code and Tabbed View Option
979 if( C4
::Context
->preference('LibraryThingForLibrariesEnabled') )
981 $template->param(LibraryThingForLibrariesID
=>
982 C4
::Context
->preference('LibraryThingForLibrariesID') );
983 $template->param(LibraryThingForLibrariesTabbedView
=>
984 C4
::Context
->preference('LibraryThingForLibrariesTabbedView') );
988 if( C4
::Context
->preference('NovelistSelectEnabled') )
990 $template->param(NovelistSelectProfile
=> C4
::Context
->preference('NovelistSelectProfile') );
991 $template->param(NovelistSelectPassword
=> C4
::Context
->preference('NovelistSelectPassword') );
992 $template->param(NovelistSelectView
=> C4
::Context
->preference('NovelistSelectView') );
997 if ( C4
::Context
->preference("Babeltheque") ) {
1000 Babeltheque_url_js
=> C4
::Context
->preference("Babeltheque_url_js"),
1005 if ( C4
::Context
->preference( "SocialNetworks" ) ) {
1006 $template->param( current_url
=> C4
::Context
->preference('OPACBaseURL') . "/cgi-bin/koha/opac-detail.pl?biblionumber=$biblionumber" );
1007 $template->param( SocialNetworks
=> 1 );
1010 # Shelf Browser Stuff
1011 if (C4
::Context
->preference("OPACShelfBrowser")) {
1012 my $starting_itemnumber = $query->param('shelfbrowse_itemnumber');
1013 if (defined($starting_itemnumber)) {
1014 $template->param( OpenOPACShelfBrowser
=> 1) if $starting_itemnumber;
1015 my $nearby = GetNearbyItems
($starting_itemnumber);
1018 starting_itemnumber
=> $starting_itemnumber,
1019 starting_homebranch
=> $nearby->{starting_homebranch
}->{description
},
1020 starting_location
=> $nearby->{starting_location
}->{description
},
1021 starting_ccode
=> $nearby->{starting_ccode
}->{description
},
1022 shelfbrowser_prev_item
=> $nearby->{prev_item
},
1023 shelfbrowser_next_item
=> $nearby->{next_item
},
1024 shelfbrowser_items
=> $nearby->{items
},
1027 # in which tab shelf browser should open ?
1028 if (grep { $starting_itemnumber == $_->{itemnumber
} } @itemloop) {
1029 $template->param(shelfbrowser_tab
=> 'holdings');
1031 $template->param(shelfbrowser_tab
=> 'otherholdings');
1036 $template->param( AmazonTld
=> get_amazon_tld
() ) if ( C4
::Context
->preference("OPACAmazonCoverImages"));
1038 if (C4
::Context
->preference("BakerTaylorEnabled")) {
1040 BakerTaylorEnabled
=> 1,
1041 BakerTaylorImageURL
=> &image_url
(),
1042 BakerTaylorLinkURL
=> &link_url
(),
1043 BakerTaylorBookstoreURL
=> C4
::Context
->preference('BakerTaylorBookstoreURL'),
1045 my ($bt_user, $bt_pass);
1047 $bt_user = C4
::Context
->preference('BakerTaylorUsername') and
1048 $bt_pass = C4
::Context
->preference('BakerTaylorPassword') )
1051 BakerTaylorContentURL
=>
1052 sprintf("http://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=%s&Password=%s&ItemKey=%s&Options=Y",
1053 $bt_user,$bt_pass,$isbn)
1059 if (C4
::Context
->preference('TagsEnabled') and $tag_quantity = C4
::Context
->preference('TagsShowOnDetail')) {
1062 TagsShowOnDetail
=> $tag_quantity,
1063 TagsInputOnDetail
=> C4
::Context
->preference('TagsInputOnDetail')
1065 $template->param(TagLoop
=> get_tags
({biblionumber
=>$biblionumber, approved
=>1,
1066 'sort'=>'-weight', limit
=>$tag_quantity}));
1069 if (C4
::Context
->preference("OPACURLOpenInNewWindow")) {
1070 # These values are going to be read by Javascript, at least in the case
1071 # of the google covers
1072 $template->param(covernewwindow
=> 'true');
1074 $template->param(covernewwindow
=> 'false');
1077 if ( C4
::Context
->preference('OpacStarRatings') !~ /disable/ ) {
1078 my $rating = GetRating
( $biblionumber, $borrowernumber );
1080 rating_value
=> $rating->{'rating_value'},
1081 rating_total
=> $rating->{'rating_total'},
1082 rating_avg
=> $rating->{'rating_avg'},
1083 rating_avg_int
=> $rating->{'rating_avg_int'},
1084 borrowernumber
=> $borrowernumber
1088 #Search for title in links
1089 my $marccontrolnumber = GetMarcControlnumber
($record, $marcflavour);
1090 my $marcissns = GetMarcISSN
( $record, $marcflavour );
1091 my $issn = $marcissns->[0] || '';
1093 if (my $search_for_title = C4
::Context
->preference('OPACSearchForTitleIn')){
1094 $dat->{title
} =~ s/\/+$//; # remove trailing slash
1095 $dat->{title
} =~ s/\s+$//; # remove trailing space
1096 $search_for_title = parametrized_url
(
1099 TITLE
=> $dat->{title
},
1100 AUTHOR
=> $dat->{author
},
1103 CONTROLNUMBER
=> $marccontrolnumber,
1104 BIBLIONUMBER
=> $biblionumber,
1107 $template->param('OPACSearchForTitleIn' => $search_for_title);
1111 if ( C4
::Context
->preference("IDREF") ) {
1112 # If the record comes from the SUDOC
1113 if ( $record->field('009') ) {
1114 my $unimarc3 = $record->field("009")->data;
1115 if ( $unimarc3 =~ /^\d+$/ ) {
1123 # We try to select the best default tab to show, according to what
1124 # the user wants, and what's available for display
1125 my $opac_serial_default = C4
::Context
->preference('opacSerialDefaultTab');
1127 $opac_serial_default eq 'subscriptions' && $subscriptionsnumber
1129 $opac_serial_default eq 'serialcollection' && @serialcollections > 0
1130 ?
'serialcollection' :
1131 $opac_serial_default eq 'holdings' && scalar (@itemloop) > 0
1133 $subscriptionsnumber
1135 @serialcollections > 0
1136 ?
'serialcollection' : 'subscriptions';
1137 $template->param('defaulttab' => $defaulttab);
1139 if (C4
::Context
->preference('OPACLocalCoverImages') == 1) {
1140 my @images = ListImagesForBiblio
($biblionumber);
1141 $template->{VARS
}->{localimages
} = \
@images;
1144 $template->{VARS
}->{IDreamBooksReviews
} = C4
::Context
->preference('IDreamBooksReviews');
1145 $template->{VARS
}->{IDreamBooksReadometer
} = C4
::Context
->preference('IDreamBooksReadometer');
1146 $template->{VARS
}->{IDreamBooksResults
} = C4
::Context
->preference('IDreamBooksResults');
1147 $template->{VARS
}->{OPACPopupAuthorsSearch
} = C4
::Context
->preference('OPACPopupAuthorsSearch');
1149 if (C4
::Context
->preference('OpacHighlightedWords')) {
1150 $template->{VARS
}->{query_desc
} = $query->param('query_desc');
1152 $template->{VARS
}->{'trackclicks'} = C4
::Context
->preference('TrackClicks');
1154 if ( C4
::Context
->preference('UseCourseReserves') ) {
1155 foreach my $i ( @items ) {
1156 $i->{'course_reserves'} = GetItemCourseReservesInfo
( itemnumber
=> $i->{'itemnumber'} );
1161 'OpacLocationBranchToDisplay' => C4
::Context
->preference('OpacLocationBranchToDisplay') ,
1162 'OpacLocationBranchToDisplayShelving' => C4
::Context
->preference('OpacLocationBranchToDisplayShelving'),
1165 output_html_with_http_headers
$query, $cookie, $template->output;