fix indentation.
[koha.git] / catalogue / detailprint.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 require Exporter;
22 use C4::Context;
23 use CGI;
24 use C4::Auth;
25 use C4::Biblio;
26 use C4::Output;
27 use C4::Date;
28
29 my $query = new CGI;
30 my $type  = $query->param('type');
31 ($type) || ( $type = 'intra' );
32
33 my $biblionumber = $query->param('biblionumber');
34
35 # change back when ive fixed request.pl
36 my @items = GetItemsInfo( $biblionumber, $type );
37 my $norequests = 1;
38 foreach my $itm (@items) {
39     $norequests = 0 unless $itm->{'notforloan'};
40 }
41
42 my $dat         = GetBiblioData($biblionumber);
43 my $record      = GetMarcBiblio($biblionumber);
44 my $addauthor   = GetMarcAuthors($record,C4::Context->preference("marcflavour"));
45 my $authorcount = scalar @$addauthor;
46
47 $dat->{'additional'} = "";
48 foreach (@$addauthor) {
49     $dat->{'additional'} .= "|" . $_->{'a'};
50 }    # for
51
52 $dat->{'count'}      = @items;
53 $dat->{'norequests'} = $norequests;
54
55 my @results;
56
57 $results[0] = $dat;
58
59 my $resultsarray = \@results;
60 my $itemsarray   = \@items;
61
62 my $startfrom = $query->param('startfrom');
63 ($startfrom) || ( $startfrom = 0 );
64
65 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
66     {
67         template_name   => ('catalogue/detailprint.tmpl'),
68         query           => $query,
69         type            => "intranet",
70         authnotrequired => ( $type eq 'opac' ),
71         flagsrequired   => { catalogue => 1 },
72     }
73 );
74
75 my $count = 1;
76
77 # now to get the items into a hash we can use and whack that thru
78
79 my $nextstartfrom = ( $startfrom + 20 < $count - 20 ) ? ( $startfrom + 20 ) : ( $count - 20 );
80 my $prevstartfrom = ( $startfrom - 20 > 0 ) ? ( $startfrom - 20 ) : (0);
81
82 $template->param(
83     startfrom      => $startfrom + 1,
84     endat          => $startfrom + 20,
85     numrecords     => $count,
86     nextstartfrom  => $nextstartfrom,
87     prevstartfrom  => $prevstartfrom,
88     BIBLIO_RESULTS => $resultsarray,
89     ITEM_RESULTS   => $itemsarray,
90     loggedinuser   => $loggedinuser,
91     biblionumber   => $biblionumber,
92 );
93
94 output_html_with_http_headers $query, $cookie, $template->output;