62a37ab52d1d9fd009800e98ba9a9479bfb8d58e
[koha.git] / basket / basket.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 use CGI qw ( -utf8 );
21 use C4::Koha;
22 use C4::Biblio;
23 use C4::Items;
24 use C4::Auth;
25 use C4::Output;
26
27 use Koha::AuthorisedValues;
28 use Koha::CsvProfiles;
29
30 my $query = new CGI;
31
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
33     {
34         template_name   => "basket/basket.tt",
35         query           => $query,
36         type            => "intranet",
37         flagsrequired   => { catalogue => 1 },
38     }
39 );
40
41 my $bib_list     = $query->param('bib_list');
42 my $print_basket = $query->param('print');
43 my $verbose      = $query->param('verbose');
44
45 if ($verbose)      { $template->param( verbose      => 1 ); }
46 if ($print_basket) { $template->param( print_basket => 1 ); }
47
48 my @bibs = split( /\//, $bib_list );
49 my @results;
50
51 my $num = 1;
52 my $marcflavour = C4::Context->preference('marcflavour');
53 if (C4::Context->preference('TagsEnabled')) {
54         $template->param(TagsEnabled => 1);
55         foreach (qw(TagsShowOnList TagsInputOnList)) {
56                 C4::Context->preference($_) and $template->param($_ => 1);
57         }
58 }
59
60
61 foreach my $biblionumber ( @bibs ) {
62     $template->param( biblionumber => $biblionumber );
63
64     my $dat              = &GetBiblioData($biblionumber);
65     next unless $dat;
66     my $record           = &GetMarcBiblio($biblionumber);
67     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
68     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
69     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
70     my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
71     my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
72     my @items            = GetItemsInfo( $biblionumber );
73
74     my $hasauthors = 0;
75     if($dat->{'author'} || @$marcauthorsarray) {
76       $hasauthors = 1;
77     }
78         
79     my $shelflocations =
80       { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $dat->{frameworkcode}, kohafield => 'items.location' } ) };
81
82         for my $itm (@items) {
83             if ($itm->{'location'}){
84             $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
85                 }
86         }
87         # COinS format FIXME: for books Only
88         my $fmt = substr $record->leader(), 6,2;
89         my $fmts;
90         $fmts->{'am'} = 'book';
91         $dat->{ocoins_format} = $fmts->{$fmt};
92
93     if ( $num % 2 == 1 ) {
94         $dat->{'even'} = 1;
95     }
96
97     $num++;
98     $dat->{biblionumber} = $biblionumber;
99     $dat->{ITEM_RESULTS}   = \@items;
100     $dat->{MARCNOTES}      = $marcnotesarray;
101     $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
102     $dat->{MARCAUTHORS}    = $marcauthorsarray;
103     $dat->{MARCSERIES}  = $marcseriesarray;
104     $dat->{MARCURLS}    = $marcurlsarray;
105     $dat->{HASAUTHORS}  = $hasauthors;
106
107     if ( C4::Context->preference("IntranetBiblioDefaultView") eq "normal" ) {
108         $dat->{dest} = "/cgi-bin/koha/catalogue/detail.pl";
109     }
110     elsif ( C4::Context->preference("IntranetBiblioDefaultView") eq "marc" ) {
111         $dat->{dest} = "/cgi-bin/koha/catalogue/MARCdetail.pl";
112     }
113     else {
114         $dat->{dest} = "/cgi-bin/koha/catalogue/ISBDdetail.pl";
115     }
116     push( @results, $dat );
117 }
118
119 my $resultsarray = \@results;
120
121 # my $itemsarray=\@items;
122
123 $template->param(
124     BIBLIO_RESULTS => $resultsarray,
125     csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc' }) ],
126     bib_list => $bib_list,
127 );
128
129 output_html_with_http_headers $query, $cookie, $template->output;