3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
27 use Koha
::AuthorisedValues
;
28 use Koha
::CsvProfiles
;
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
34 template_name
=> "basket/basket.tt",
37 flagsrequired
=> { catalogue
=> 1 },
41 my $bib_list = $query->param('bib_list');
42 my $print_basket = $query->param('print');
43 my $verbose = $query->param('verbose');
45 if ($verbose) { $template->param( verbose
=> 1 ); }
46 if ($print_basket) { $template->param( print_basket
=> 1 ); }
48 my @bibs = split( /\//, $bib_list );
52 my $marcflavour = C4
::Context
->preference('marcflavour');
53 if (C4
::Context
->preference('TagsEnabled')) {
54 $template->param(TagsEnabled
=> 1);
55 foreach (qw(TagsShowOnList TagsInputOnList)) {
56 C4
::Context
->preference($_) and $template->param($_ => 1);
61 foreach my $biblionumber ( @bibs ) {
62 $template->param( biblionumber
=> $biblionumber );
64 my $fw = GetFrameworkCode
($biblionumber);
66 my $dat = &GetBiblioData
($biblionumber);
68 my $record = &GetMarcBiblio
({ biblionumber
=> $biblionumber });
69 $dat->{subtitle
} = GetRecordValue
('subtitle', $record, $fw);
70 my $marcnotesarray = GetMarcNotes
( $record, $marcflavour );
71 my $marcauthorsarray = GetMarcAuthors
( $record, $marcflavour );
72 my $marcsubjctsarray = GetMarcSubjects
( $record, $marcflavour );
73 my $marcseriesarray = GetMarcSeries
($record,$marcflavour);
74 my $marcurlsarray = GetMarcUrls
($record,$marcflavour);
75 my @items = GetItemsInfo
( $biblionumber );
78 if($dat->{'author'} || @
$marcauthorsarray) {
83 { map { $_->{authorised_value
} => $_->{lib
} } Koha
::AuthorisedValues
->get_descriptions_by_koha_field( { frameworkcode
=> $dat->{frameworkcode
}, kohafield
=> 'items.location' } ) };
85 for my $itm (@items) {
86 if ($itm->{'location'}){
87 $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
90 # COinS format FIXME: for books Only
91 my $fmt = substr $record->leader(), 6,2;
93 $fmts->{'am'} = 'book';
94 $dat->{ocoins_format
} = $fmts->{$fmt};
96 if ( $num % 2 == 1 ) {
101 $dat->{biblionumber
} = $biblionumber;
102 $dat->{ITEM_RESULTS
} = \
@items;
103 $dat->{MARCNOTES
} = $marcnotesarray;
104 $dat->{MARCSUBJCTS
} = $marcsubjctsarray;
105 $dat->{MARCAUTHORS
} = $marcauthorsarray;
106 $dat->{MARCSERIES
} = $marcseriesarray;
107 $dat->{MARCURLS
} = $marcurlsarray;
108 $dat->{HASAUTHORS
} = $hasauthors;
110 if ( C4
::Context
->preference("IntranetBiblioDefaultView") eq "normal" ) {
111 $dat->{dest
} = "/cgi-bin/koha/catalogue/detail.pl";
113 elsif ( C4
::Context
->preference("IntranetBiblioDefaultView") eq "marc" ) {
114 $dat->{dest
} = "/cgi-bin/koha/catalogue/MARCdetail.pl";
117 $dat->{dest
} = "/cgi-bin/koha/catalogue/ISBDdetail.pl";
119 push( @results, $dat );
122 my $resultsarray = \
@results;
124 # my $itemsarray=\@items;
127 BIBLIO_RESULTS
=> $resultsarray,
128 csv_profiles
=> [ Koha
::CsvProfiles
->search({ type
=> 'marc', used_for
=> 'export_records' }) ],
129 bib_list
=> $bib_list,
132 output_html_with_http_headers
$query, $cookie, $template->output;