Merge branch 'bug_2832' into 3.12-master
[koha.git] / opac / opac-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 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.
9 #
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.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18
19 use strict;
20 use warnings;
21 use CGI;
22 use C4::Koha;
23 use C4::Biblio;
24 use C4::Branch;
25 use C4::Items;
26 use C4::Circulation;
27 use C4::Auth;
28 use C4::Output;
29
30 my $query = new CGI;
31
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
33     {
34         template_name   => "opac-basket.tmpl",
35         query           => $query,
36         type            => "opac",
37         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
38         flagsrequired   => { borrow => 1 },
39     }
40 );
41
42 my $bib_list     = $query->param('bib_list');
43 my $print_basket = $query->param('print');
44 my $verbose      = $query->param('verbose');
45
46 if ($verbose)      { $template->param( verbose      => 1 ); }
47 if ($print_basket) { $template->param( print_basket => 1 ); }
48
49 my @bibs = split( /\//, $bib_list );
50 my @results;
51
52 my $num = 1;
53 my $marcflavour = C4::Context->preference('marcflavour');
54 if (C4::Context->preference('TagsEnabled')) {
55         $template->param(TagsEnabled => 1);
56         foreach (qw(TagsShowOnList TagsInputOnList)) {
57                 C4::Context->preference($_) and $template->param($_ => 1);
58         }
59 }
60
61
62 foreach my $biblionumber ( @bibs ) {
63     $template->param( biblionumber => $biblionumber );
64
65     my $dat              = &GetBiblioData($biblionumber);
66     my $record           = &GetMarcBiblio($biblionumber);
67     next unless $record;
68     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
69     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
70     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
71     my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
72     my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
73     my @items            = &GetItemsInfo( $biblionumber );
74     my $subtitle         = GetRecordValue('subtitle', $record, GetFrameworkCode($biblionumber));
75
76     my $hasauthors = 0;
77     if($dat->{'author'} || @$marcauthorsarray) {
78       $hasauthors = 1;
79     }
80     my $collections =  GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'}, 'opac');
81
82         # COinS format FIXME: for books Only
83         my $coins_format;
84         my $fmt = substr $record->leader(), 6,2;
85         my $fmts;
86         $fmts->{'am'} = 'book';
87         $dat->{ocoins_format} = $fmts->{$fmt};
88
89     if ( $num % 2 == 1 ) {
90         $dat->{'even'} = 1;
91     }
92
93 my $branches = GetBranches();
94     for my $itm (@items) {
95         my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($itm->{itemnumber});
96         if ( defined( $transfertwhen ) && $transfertwhen ne '' ) {
97              $itm->{transfertwhen} = $transfertwhen;
98              $itm->{transfertfrom} = $branches->{$transfertfrom}{branchname};
99              $itm->{transfertto}   = $branches->{$transfertto}{branchname};
100         }
101     }
102     $num++;
103     $dat->{biblionumber} = $biblionumber;
104     $dat->{ITEM_RESULTS}   = \@items;
105     $dat->{MARCNOTES}      = $marcnotesarray;
106     $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
107     $dat->{MARCAUTHORS}    = $marcauthorsarray;
108     $dat->{MARCSERIES}  = $marcseriesarray;
109     $dat->{MARCURLS}    = $marcurlsarray;
110     $dat->{HASAUTHORS}  = $hasauthors;
111     $dat->{subtitle} = $subtitle;
112
113     if ( C4::Context->preference("BiblioDefaultView") eq "normal" ) {
114         $dat->{dest} = "opac-detail.pl";
115     }
116     elsif ( C4::Context->preference("BiblioDefaultView") eq "marc" ) {
117         $dat->{dest} = "opac-MARCdetail.pl";
118     }
119     else {
120         $dat->{dest} = "opac-ISBDdetail.pl";
121     }
122     push( @results, $dat );
123 }
124
125 my $resultsarray = \@results;
126
127 # my $itemsarray=\@items;
128
129 $template->param(
130     bib_list => $bib_list,
131     BIBLIO_RESULTS => $resultsarray,
132 );
133
134 output_html_with_http_headers $query, $cookie, $template->output;