whitespace cleanup and remove editor comments
[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 with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18
19 use strict;
20 use CGI;
21 use C4::Koha;
22 use C4::Biblio;
23 use C4::Items;
24 use C4::Auth;
25 use C4::Output;
26
27 my $query = new CGI;
28
29 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
30     {
31         template_name   => "opac-basket.tmpl",
32         query           => $query,
33         type            => "opac",
34         authnotrequired => 1,
35         flagsrequired   => { borrow => 1 },
36     }
37 );
38
39 my $bib_list     = $query->param('bib_list');
40 my $print_basket = $query->param('print');
41 my $verbose      = $query->param('verbose');
42
43 if ($verbose)      { $template->param( verbose      => 1 ); }
44 if ($print_basket) { $template->param( print_basket => 1 ); }
45
46 my @bibs = split( /\//, $bib_list );
47 my @results;
48
49 my $num = 1;
50 my $marcflavour = C4::Context->preference('marcflavour');
51
52
53 foreach my $biblionumber ( @bibs ) {
54     $template->param( biblionumber => $biblionumber );
55
56     my $dat              = &GetBiblioData($biblionumber);
57     my $record           = &GetMarcBiblio($biblionumber);
58     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
59     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
60     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
61     my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
62     my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
63     my @items            = &GetItemsInfo( $biblionumber, 'opac' );
64         
65     my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'});
66     my $collections =  GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'} );
67
68         for my $itm (@items) {
69             $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
70         }
71         # COinS format FIXME: for books Only
72         my $coins_format;
73         my $fmt = substr $record->leader(), 6,2;
74         my $fmts;
75         $fmts->{'am'} = 'book';
76         $dat->{ocoins_format} => $fmts->{$fmt};
77
78     if ( $num % 2 == 1 ) {
79         $dat->{'even'} = 1;
80     }
81
82     $num++;
83     $dat->{biblionumber} = $biblionumber;
84     $dat->{ITEM_RESULTS}   = \@items;
85     $dat->{MARCNOTES}      = $marcnotesarray;
86     $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
87     $dat->{MARCAUTHORS}    = $marcauthorsarray;
88     $dat->{MARCSERIES}  = $marcseriesarray;
89     $dat->{MARCURLS}    = $marcurlsarray;
90
91     if ( C4::Context->preference("BiblioDefaultView") eq "normal" ) {
92         $dat->{dest} = "opac-detail.pl";
93     }
94     elsif ( C4::Context->preference("BiblioDefaultView") eq "marc" ) {
95         $dat->{dest} = "opac-MARCdetail.pl";
96     }
97     else {
98         $dat->{dest} = "opac-ISBDdetail.pl";
99     }
100     push( @results, $dat );
101 }
102
103 my $resultsarray = \@results;
104
105 # my $itemsarray=\@items;
106
107 $template->param(
108     BIBLIO_RESULTS => $resultsarray,
109 );
110
111 output_html_with_http_headers $query, $cookie, $template->output;