Adding COinS support to cart pop-up; Hide similar items in opac-details if no similar...
[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 require Exporter;
21 use CGI;
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 foreach my $biblionumber ( @bibs ) {
52     $template->param( biblionumber => $biblionumber );
53
54     my $dat              = &GetBiblioData($biblionumber);
55     my $record           = &GetMarcBiblio($biblionumber);
56     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
57     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
58     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
59     my @items            = &GetItemsInfo( $biblionumber, 'opac' );
60         
61         # COinS format FIXME: for books Only
62         my $coins_format;
63         my $fmt = substr $record->leader(), 6,2;
64         my $fmts;
65         $fmts->{'am'} = 'book';
66         $dat->{ocoins_format} => $fmts->{$fmt};
67
68     if ( $num % 2 == 1 ) {
69         $dat->{'even'} = 1;
70     }
71
72     $num++;
73     $dat->{biblionumber} = $biblionumber;
74     $dat->{ITEM_RESULTS}   = \@items;
75     $dat->{MARCNOTES}      = $marcnotesarray;
76     $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
77     $dat->{MARCAUTHORS}    = $marcauthorsarray;
78
79     if ( C4::Context->preference("BiblioDefaultView") eq "normal" ) {
80         $dat->{dest} = "opac-detail.pl";
81     }
82     elsif ( C4::Context->preference("BiblioDefaultView") eq "marc" ) {
83         $dat->{dest} = "opac-MARCdetail.pl";
84     }
85     else {
86         $dat->{dest} = "opac-ISBDdetail.pl";
87     }
88     push( @results, $dat );
89 }
90
91 my $resultsarray = \@results;
92
93 # my $itemsarray=\@items;
94
95 $template->param(
96     BIBLIO_RESULTS => $resultsarray,
97 );
98
99 output_html_with_http_headers $query, $cookie, $template->output;