Bug 20491: Updating the MARC subfield desciption of 952q
[koha.git] / basket / basket.pl
blob4318a9560f7a200109be28ee5981899596318295
1 #!/usr/bin/perl
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>.
19 use Modern::Perl;
20 use CGI qw ( -utf8 );
21 use C4::Koha;
22 use C4::Biblio;
23 use C4::Items;
24 use C4::Auth;
25 use C4::Output;
27 use Koha::AuthorisedValues;
28 use Koha::CsvProfiles;
30 my $query = new CGI;
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
34 template_name => "basket/basket.tt",
35 query => $query,
36 type => "intranet",
37 flagsrequired => { catalogue => 1 },
41 my $bib_list = $query->param('bib_list');
42 my $verbose = $query->param('verbose');
44 if ($verbose) { $template->param( verbose => 1 ); }
46 my @bibs = split( /\//, $bib_list );
47 my @results;
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);
59 foreach my $biblionumber ( @bibs ) {
60 $template->param( biblionumber => $biblionumber );
62 my $fw = GetFrameworkCode($biblionumber);
64 my $dat = &GetBiblioData($biblionumber);
65 next unless $dat;
66 my $record = &GetMarcBiblio({ biblionumber => $biblionumber });
67 $dat->{subtitle} = GetRecordValue('subtitle', $record, $fw);
68 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
69 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
70 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
71 my $marcseriesarray = GetMarcSeries ($record,$marcflavour);
72 my $marcurlsarray = GetMarcUrls ($record,$marcflavour);
73 my @items = GetItemsInfo( $biblionumber );
75 my $hasauthors = 0;
76 if($dat->{'author'} || @$marcauthorsarray) {
77 $hasauthors = 1;
80 my $shelflocations =
81 { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $dat->{frameworkcode}, kohafield => 'items.location' } ) };
83 for my $itm (@items) {
84 if ($itm->{'location'}){
85 $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
88 # COinS format FIXME: for books Only
89 my $fmt = substr $record->leader(), 6,2;
90 my $fmts;
91 $fmts->{'am'} = 'book';
92 $dat->{ocoins_format} = $fmts->{$fmt};
94 if ( $num % 2 == 1 ) {
95 $dat->{'even'} = 1;
98 $num++;
99 $dat->{biblionumber} = $biblionumber;
100 $dat->{ITEM_RESULTS} = \@items;
101 $dat->{MARCNOTES} = $marcnotesarray;
102 $dat->{MARCSUBJCTS} = $marcsubjctsarray;
103 $dat->{MARCAUTHORS} = $marcauthorsarray;
104 $dat->{MARCSERIES} = $marcseriesarray;
105 $dat->{MARCURLS} = $marcurlsarray;
106 $dat->{HASAUTHORS} = $hasauthors;
108 if ( C4::Context->preference("IntranetBiblioDefaultView") eq "normal" ) {
109 $dat->{dest} = "/cgi-bin/koha/catalogue/detail.pl";
111 elsif ( C4::Context->preference("IntranetBiblioDefaultView") eq "marc" ) {
112 $dat->{dest} = "/cgi-bin/koha/catalogue/MARCdetail.pl";
114 else {
115 $dat->{dest} = "/cgi-bin/koha/catalogue/ISBDdetail.pl";
117 push( @results, $dat );
120 my $resultsarray = \@results;
122 # my $itemsarray=\@items;
124 $template->param(
125 BIBLIO_RESULTS => $resultsarray,
126 csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc', used_for => 'export_records' }) ],
127 bib_list => $bib_list,
130 output_html_with_http_headers $query, $cookie, $template->output;