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
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
31 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
33 template_name
=> "basket/basket.tmpl",
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 );
51 my $marcflavour = C4
::Context
->preference('marcflavour');
52 if (C4
::Context
->preference('TagsEnabled')) {
53 $template->param(TagsEnabled
=> 1);
54 foreach (qw(TagsShowOnList TagsInputOnList)) {
55 C4
::Context
->preference($_) and $template->param($_ => 1);
60 foreach my $biblionumber ( @bibs ) {
61 $template->param( biblionumber
=> $biblionumber );
63 my $dat = &GetBiblioData
($biblionumber);
64 my $record = &GetMarcBiblio
($biblionumber);
65 my $marcnotesarray = GetMarcNotes
( $record, $marcflavour );
66 my $marcauthorsarray = GetMarcAuthors
( $record, $marcflavour );
67 my $marcsubjctsarray = GetMarcSubjects
( $record, $marcflavour );
68 my $marcseriesarray = GetMarcSeries
($record,$marcflavour);
69 my $marcurlsarray = GetMarcUrls
($record,$marcflavour);
70 my @items = GetItemsInfo
( $biblionumber );
73 if($dat->{'author'} || @
$marcauthorsarray) {
77 my $shelflocations =GetKohaAuthorisedValues
('items.location',$dat->{'frameworkcode'}, 'opac');
78 my $collections = GetKohaAuthorisedValues
('items.ccode',$dat->{'frameworkcode'}, 'opac');
80 for my $itm (@items) {
81 if ($itm->{'location'}){
82 $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
85 # COinS format FIXME: for books Only
87 my $fmt = substr $record->leader(), 6,2;
89 $fmts->{'am'} = 'book';
90 $dat->{ocoins_format
} = $fmts->{$fmt};
92 if ( $num % 2 == 1 ) {
97 $dat->{biblionumber
} = $biblionumber;
98 $dat->{ITEM_RESULTS
} = \
@items;
99 $dat->{MARCNOTES
} = $marcnotesarray;
100 $dat->{MARCSUBJCTS
} = $marcsubjctsarray;
101 $dat->{MARCAUTHORS
} = $marcauthorsarray;
102 $dat->{MARCSERIES
} = $marcseriesarray;
103 $dat->{MARCURLS
} = $marcurlsarray;
104 $dat->{HASAUTHORS
} = $hasauthors;
106 if ( C4
::Context
->preference("IntranetBiblioDefaultView") eq "normal" ) {
107 $dat->{dest
} = "/cgi-bin/koha/catalogue/detail.pl";
109 elsif ( C4
::Context
->preference("IntranetBiblioDefaultView") eq "marc" ) {
110 $dat->{dest
} = "/cgi-bin/koha/catalogue/MARCdetail.pl";
113 $dat->{dest
} = "/cgi-bin/koha/catalogue/ISBDdetail.pl";
115 push( @results, $dat );
118 my $resultsarray = \
@results;
120 # my $itemsarray=\@items;
123 BIBLIO_RESULTS
=> $resultsarray,
124 csv_profiles
=> GetCsvProfilesLoop
(),
125 bib_list
=> $bib_list,
128 output_html_with_http_headers
$query, $cookie, $template->output;