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