Removing useless scripts : the MARC=OFF scripts are in acqui.simple for instance...
[koha.git] / 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 HTML::Template;
22 use strict;
23 require Exporter;
24 use C4::Context;
25 use C4::Output;  # contains gettemplate
26 use CGI;
27 use C4::Auth;
28 use C4::Biblio;
29 use C4::Interface::CGI::Output;
30 use C4::Date;
31
32 my $query=new CGI;
33 my $type=$query->param('type');
34 ($type) || ($type='intra');
35
36 my $biblionumber=$query->param('bib');
37
38 # change back when ive fixed request.pl
39 my @items = ItemInfo(undef, $biblionumber, $type);
40 my $norequests = 1;
41 foreach my $itm (@items) {
42      $norequests = 0 unless $itm->{'notforloan'};
43 }
44
45
46
47 my $dat=bibdata($biblionumber);
48 my ($authorcount, $addauthor)= &getaddauthor($biblionumber);
49 my ($webbiblioitemcount, @webbiblioitems) = &getwebbiblioitems($biblionumber);
50 my ($websitecount, @websites)             = &getwebsites($biblionumber);
51
52 $dat->{'count'}=@items;
53 $dat->{'norequests'} = $norequests;
54
55 $dat->{'additional'}=$addauthor->[0]->{'author'};
56 for (my $i = 1; $i < $authorcount; $i++) {
57         $dat->{'additional'} .= "|" . $addauthor->[$i]->{'author'};
58 } # for
59
60 my @results;
61
62 $results[0]=$dat;
63
64 my $resultsarray=\@results;
65 my $itemsarray=\@items;
66 my $webarray=\@webbiblioitems;
67 my $sitearray=\@websites;
68
69 my $startfrom=$query->param('startfrom');
70 ($startfrom) || ($startfrom=0);
71
72 my ($template, $loggedinuser, $cookie) = get_template_and_user({
73         template_name   => ('catalogue/detailprint.tmpl'),
74         query           => $query,
75         type            => "intranet",
76         authnotrequired => ($type eq 'opac'),
77         flagsrequired   => {catalogue => 1},
78     });
79
80 my $count=1;
81
82 # now to get the items into a hash we can use and whack that thru
83
84
85 my $nextstartfrom=($startfrom+20<$count-20) ? ($startfrom+20) : ($count-20);
86 my $prevstartfrom=($startfrom-20>0) ? ($startfrom-20) : (0);
87 $template->param(startfrom => $startfrom+1,
88                                                 endat => $startfrom+20,
89                                                 numrecords => $count,
90                                                 nextstartfrom => $nextstartfrom,
91                                                 prevstartfrom => $prevstartfrom,
92                                                 BIBLIO_RESULTS => $resultsarray,
93                                                 ITEM_RESULTS => $itemsarray,
94                                                 WEB_RESULTS => $webarray,
95                                                 SITE_RESULTS => $sitearray,
96                                                 loggedinuser => $loggedinuser,
97                                                 biblionumber => $biblionumber,
98                                                 );
99
100 output_html_with_http_headers $query, $cookie, $template->output;
101
102
103 # Local Variables:
104 # tab-width: 8
105 # End: