bug 3034: Tag multiple items at once.
[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 if (C4::Context->preference('TagsEnabled')) {
52         $template->param(TagsEnabled => 1);
53         foreach (qw(TagsShowOnList TagsInputOnList)) {
54                 C4::Context->preference($_) and $template->param($_ => 1);
55         }
56 }
57
58
59 foreach my $biblionumber ( @bibs ) {
60     $template->param( biblionumber => $biblionumber );
61
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, 'opac' );
70         
71     my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'});
72     my $collections =  GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'} );
73
74         for my $itm (@items) {
75             $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
76         }
77         # COinS format FIXME: for books Only
78         my $coins_format;
79         my $fmt = substr $record->leader(), 6,2;
80         my $fmts;
81         $fmts->{'am'} = 'book';
82         $dat->{ocoins_format} => $fmts->{$fmt};
83
84     if ( $num % 2 == 1 ) {
85         $dat->{'even'} = 1;
86     }
87
88     $num++;
89     $dat->{biblionumber} = $biblionumber;
90     $dat->{ITEM_RESULTS}   = \@items;
91     $dat->{MARCNOTES}      = $marcnotesarray;
92     $dat->{MARCSUBJCTS}    = $marcsubjctsarray;
93     $dat->{MARCAUTHORS}    = $marcauthorsarray;
94     $dat->{MARCSERIES}  = $marcseriesarray;
95     $dat->{MARCURLS}    = $marcurlsarray;
96
97     if ( C4::Context->preference("BiblioDefaultView") eq "normal" ) {
98         $dat->{dest} = "opac-detail.pl";
99     }
100     elsif ( C4::Context->preference("BiblioDefaultView") eq "marc" ) {
101         $dat->{dest} = "opac-MARCdetail.pl";
102     }
103     else {
104         $dat->{dest} = "opac-ISBDdetail.pl";
105     }
106     push( @results, $dat );
107 }
108
109 my $resultsarray = \@results;
110
111 # my $itemsarray=\@items;
112
113 $template->param(
114     BIBLIO_RESULTS => $resultsarray,
115 );
116
117 output_html_with_http_headers $query, $cookie, $template->output;