bug 2606: reduce size of offline circ patron database
[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
22 use C4::Context;
23 use CGI;
24 use C4::Auth;
25 use C4::Biblio;
26 use C4::Items;
27 use C4::Output;
28 use C4::Dates;
29
30 my $query = new CGI;
31 my $type  = $query->param('type');
32 ($type) || ( $type = 'intra' );
33
34 my $biblionumber = $query->param('biblionumber');
35
36 # change back when ive fixed request.pl
37 my @items = GetItemsInfo( $biblionumber, $type );
38 my $norequests = 1;
39 foreach my $itm (@items) {
40     $norequests = 0 unless $itm->{'notforloan'};
41 }
42
43 my $dat         = GetBiblioData($biblionumber);
44 my $record      = GetMarcBiblio($biblionumber);
45 my $addauthor   = GetMarcAuthors($record,C4::Context->preference("marcflavour"));
46 my $authorcount = scalar @$addauthor;
47
48 $dat->{'additional'} = "";
49 foreach (@$addauthor) {
50     $dat->{'additional'} .= "|" . $_->{'a'};
51 }    # for
52
53 $dat->{'count'}      = @items;
54 $dat->{'norequests'} = $norequests;
55
56 my @results;
57
58 $results[0] = $dat;
59
60 my $resultsarray = \@results;
61 my $itemsarray   = \@items;
62
63 my $startfrom = $query->param('startfrom');
64 ($startfrom) || ( $startfrom = 0 );
65
66 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
67     {
68         template_name   => ('catalogue/detailprint.tmpl'),
69         query           => $query,
70         type            => "intranet",
71         authnotrequired => ( $type eq 'opac' ),
72         flagsrequired   => { catalogue => 1 },
73     }
74 );
75
76 my $count = 1;
77
78 # now to get the items into a hash we can use and whack that thru
79
80 my $nextstartfrom = ( $startfrom + 20 < $count - 20 ) ? ( $startfrom + 20 ) : ( $count - 20 );
81 my $prevstartfrom = ( $startfrom - 20 > 0 ) ? ( $startfrom - 20 ) : (0);
82
83 $template->param(
84     startfrom      => $startfrom + 1,
85     endat          => $startfrom + 20,
86     numrecords     => $count,
87     nextstartfrom  => $nextstartfrom,
88     prevstartfrom  => $prevstartfrom,
89     BIBLIO_RESULTS => $resultsarray,
90     ITEM_RESULTS   => $itemsarray,
91     loggedinuser   => $loggedinuser,
92     biblionumber   => $biblionumber,
93 );
94
95 output_html_with_http_headers $query, $cookie, $template->output;