Updating translations prior to RC1 release
[koha.git] / opac / opac-basket.pl
blob7b5217807f547aebfa3a4d519b1040727d6f846b
1 #!/usr/bin/perl
3 # This file is part of Koha.
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.
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.
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
19 use strict;
20 require Exporter;
21 use CGI;
22 use C4::Koha;
23 use C4::Biblio;
24 use C4::Items;
25 use C4::Auth;
26 use C4::Output;
28 my $query = new CGI;
30 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
32 template_name => "opac-basket.tmpl",
33 query => $query,
34 type => "opac",
35 authnotrequired => 1,
36 flagsrequired => { borrow => 1 },
40 my $bib_list = $query->param('bib_list');
41 my $print_basket = $query->param('print');
42 my $verbose = $query->param('verbose');
44 if ($verbose) { $template->param( verbose => 1 ); }
45 if ($print_basket) { $template->param( print_basket => 1 ); }
47 my @bibs = split( /\//, $bib_list );
48 my @results;
50 my $num = 1;
51 my $marcflavour = C4::Context->preference('marcflavour');
54 foreach my $biblionumber ( @bibs ) {
55 $template->param( biblionumber => $biblionumber );
57 my $dat = &GetBiblioData($biblionumber);
58 my $record = &GetMarcBiblio($biblionumber);
59 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
60 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
61 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
62 my $marcseriesarray = GetMarcSeries ($record,$marcflavour);
63 my $marcurlsarray = GetMarcUrls ($record,$marcflavour);
64 my @items = &GetItemsInfo( $biblionumber, 'opac' );
66 my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'});
67 my $collections = GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'} );
69 for my $itm (@items) {
70 $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
72 # COinS format FIXME: for books Only
73 my $coins_format;
74 my $fmt = substr $record->leader(), 6,2;
75 my $fmts;
76 $fmts->{'am'} = 'book';
77 $dat->{ocoins_format} => $fmts->{$fmt};
79 if ( $num % 2 == 1 ) {
80 $dat->{'even'} = 1;
83 $num++;
84 $dat->{biblionumber} = $biblionumber;
85 $dat->{ITEM_RESULTS} = \@items;
86 $dat->{MARCNOTES} = $marcnotesarray;
87 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
88 $dat->{MARCAUTHORS} = $marcauthorsarray;
89 $dat->{MARCSERIES} = $marcseriesarray;
90 $dat->{MARCURLS} = $marcurlsarray;
92 if ( C4::Context->preference("BiblioDefaultView") eq "normal" ) {
93 $dat->{dest} = "opac-detail.pl";
95 elsif ( C4::Context->preference("BiblioDefaultView") eq "marc" ) {
96 $dat->{dest} = "opac-MARCdetail.pl";
98 else {
99 $dat->{dest} = "opac-ISBDdetail.pl";
101 push( @results, $dat );
104 my $resultsarray = \@results;
106 # my $itemsarray=\@items;
108 $template->param(
109 BIBLIO_RESULTS => $resultsarray,
112 output_html_with_http_headers $query, $cookie, $template->output;