c6d317035bf8217c317a550f4f42ee835e04dc2b
[srvgit] / basket / 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
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.
9 #
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.
14 #
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>.
17
18
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;
26
27 use Koha::AuthorisedValues;
28 use Koha::CsvProfiles;
29
30 my $query = new CGI;
31
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
33     {
34         template_name   => "basket/basket.tt",
35         query           => $query,
36         type            => "intranet",
37         flagsrequired   => { catalogue => 1 },
38     }
39 );
40
41 my $bib_list     = $query->param('bib_list');
42 my $verbose      = $query->param('verbose');
43
44 if ($verbose)      { $template->param( verbose      => 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     next unless $dat;
64     my $record           = &GetMarcBiblio({ biblionumber => $biblionumber });
65     $dat->{subtitle}     = GetRecordValue('subtitle', $record);
66     my $marcnotesarray   = GetMarcNotes( $record, $marcflavour );
67     my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
68     my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
69     my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
70     my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
71     my @items            = GetItemsInfo( $biblionumber );
72
73     my $hasauthors = 0;
74     if($dat->{'author'} || @$marcauthorsarray) {
75       $hasauthors = 1;
76     }
77         
78     my $shelflocations =
79       { map { $_->{authorised_value} => $_->{lib} } Koha::AuthorisedValues->get_descriptions_by_koha_field( { frameworkcode => $dat->{frameworkcode}, kohafield => 'items.location' } ) };
80
81         for my $itm (@items) {
82             if ($itm->{'location'}){
83             $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
84                 }
85         }
86         # COinS format FIXME: for books Only
87         my $fmt = substr $record->leader(), 6,2;
88         my $fmts;
89         $fmts->{'am'} = 'book';
90         $dat->{ocoins_format} = $fmts->{$fmt};
91
92     if ( $num % 2 == 1 ) {
93         $dat->{'even'} = 1;
94     }
95
96     $num++;
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;
105
106     if ( C4::Context->preference("IntranetBiblioDefaultView") eq "normal" ) {
107         $dat->{dest} = "/cgi-bin/koha/catalogue/detail.pl";
108     }
109     elsif ( C4::Context->preference("IntranetBiblioDefaultView") eq "marc" ) {
110         $dat->{dest} = "/cgi-bin/koha/catalogue/MARCdetail.pl";
111     }
112     else {
113         $dat->{dest} = "/cgi-bin/koha/catalogue/ISBDdetail.pl";
114     }
115     push( @results, $dat );
116 }
117
118 my $resultsarray = \@results;
119
120 # my $itemsarray=\@items;
121
122 $template->param(
123     BIBLIO_RESULTS => $resultsarray,
124     csv_profiles => [ Koha::CsvProfiles->search({ type => 'marc', used_for => 'export_records' }) ],
125     bib_list => $bib_list,
126 );
127
128 output_html_with_http_headers $query, $cookie, $template->output;