Bug 7698: Add CHR/ICU Zebra tokenization choice to installation
[koha.git] / basket / basket.pl
blob8fc15e4b73862865cc07644bd84e34dfac2c6cb8
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
19 use strict;
20 use warnings;
21 use CGI;
22 use C4::Koha;
23 use C4::Biblio;
24 use C4::Items;
25 use C4::Auth;
26 use C4::Output;
28 my $query = new CGI;
30 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
32 template_name => "basket/basket.tmpl",
33 query => $query,
34 type => "intranet",
35 flagsrequired => { borrow => 1 },
39 my $bib_list = $query->param('bib_list');
40 my $print_basket = $query->param('print');
41 my $verbose = $query->param('verbose');
43 if ($verbose) { $template->param( verbose => 1 ); }
44 if ($print_basket) { $template->param( print_basket => 1 ); }
46 my @bibs = split( /\//, $bib_list );
47 my @results;
49 my $num = 1;
50 my $marcflavour = C4::Context->preference('marcflavour');
51 if (C4::Context->preference('TagsEnabled')) {
52 $template->param(TagsEnabled => 1);
53 foreach (qw(TagsShowOnList TagsInputOnList)) {
54 C4::Context->preference($_) and $template->param($_ => 1);
59 foreach my $biblionumber ( @bibs ) {
60 $template->param( biblionumber => $biblionumber );
62 my $dat = &GetBiblioData($biblionumber);
63 my $record = &GetMarcBiblio($biblionumber);
64 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
65 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
66 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
67 my $marcseriesarray = GetMarcSeries ($record,$marcflavour);
68 my $marcurlsarray = GetMarcUrls ($record,$marcflavour);
69 my @items = GetItemsInfo( $biblionumber );
71 my $hasauthors = 0;
72 if($dat->{'author'} || @$marcauthorsarray) {
73 $hasauthors = 1;
76 my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'}, 'opac');
77 my $collections = GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'}, 'opac');
79 for my $itm (@items) {
80 if ($itm->{'location'}){
81 $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
84 # COinS format FIXME: for books Only
85 my $coins_format;
86 my $fmt = substr $record->leader(), 6,2;
87 my $fmts;
88 $fmts->{'am'} = 'book';
89 $dat->{ocoins_format} = $fmts->{$fmt};
91 if ( $num % 2 == 1 ) {
92 $dat->{'even'} = 1;
95 $num++;
96 $dat->{biblionumber} = $biblionumber;
97 $dat->{ITEM_RESULTS} = \@items;
98 $dat->{MARCNOTES} = $marcnotesarray;
99 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
100 $dat->{MARCAUTHORS} = $marcauthorsarray;
101 $dat->{MARCSERIES} = $marcseriesarray;
102 $dat->{MARCURLS} = $marcurlsarray;
103 $dat->{HASAUTHORS} = $hasauthors;
105 if ( C4::Context->preference("IntranetBiblioDefaultView") eq "normal" ) {
106 $dat->{dest} = "/cgi-bin/koha/catalogue/detail.pl";
108 elsif ( C4::Context->preference("IntranetBiblioDefaultView") eq "marc" ) {
109 $dat->{dest} = "/cgi-bin/koha/catalogue/MARCdetail.pl";
111 else {
112 $dat->{dest} = "/cgi-bin/koha/catalogue/ISBDdetail.pl";
114 push( @results, $dat );
117 my $resultsarray = \@results;
119 # my $itemsarray=\@items;
121 $template->param(
122 BIBLIO_RESULTS => $resultsarray,
125 output_html_with_http_headers $query, $cookie, $template->output;