*** empty log message ***
[koha.git] / detail.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::Search;
28 use C4::Auth;
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)= &addauthor($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   => ($type eq 'opac'? 'catalogue/detail-opac.tmpl':
74                                              'catalogue/detail.tmpl'),
75         query           => $query,
76         type            => "intranet",
77         authnotrequired => ($type eq 'opac'),
78         flagsrequired   => {catalogue => 1},
79     });
80
81 my $count=1;
82
83 # now to get the items into a hash we can use and whack that thru
84
85
86 my $nextstartfrom=($startfrom+20<$count-20) ? ($startfrom+20) : ($count-20);
87 my $prevstartfrom=($startfrom-20>0) ? ($startfrom-20) : (0);
88 $template->param(startfrom => $startfrom+1,
89                                                 endat => $startfrom+20,
90                                                 numrecords => $count,
91                                                 nextstartfrom => $nextstartfrom,
92                                                 prevstartfrom => $prevstartfrom,
93                                                 BIBLIO_RESULTS => $resultsarray,
94                                                 ITEM_RESULTS => $itemsarray,
95                                                 WEB_RESULTS => $webarray,
96                                                 SITE_RESULTS => $sitearray,
97                                                 loggedinuser => $loggedinuser,
98                                                 biblionumber => $biblionumber,
99                                                 );
100
101 output_html_with_http_headers $query, $cookie, $template->output;
102
103
104 # Local Variables:
105 # tab-width: 8
106 # End: