altering template path
[koha.git] / serials / lateissues.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 # $Id$
21
22 =head1 NAME
23
24 lateissues
25
26 =head1 DESCRIPTION
27
28 this script display late issue by types.
29
30 =head1 PARAMETERS
31
32 =over 4
33
34 =item supplierid
35 the id of the supplier this script has to search late issues.
36
37 =back
38
39 =cut
40
41 use strict;
42 use CGI;
43 use C4::Auth;
44 use C4::Serials;
45 use C4::Acquisition;
46 use C4::Output;
47 use C4::Interface::CGI::Output;
48 use C4::Context;
49 use HTML::Template;
50
51 my $query = new CGI;
52 # my $title = $query->param('title');
53 # my $ISSN = $query->param('ISSN');
54 # my @subscriptions = GetSubscriptions($title,$ISSN);
55
56 my $supplierid = $query->param('supplierid');
57 my %supplierlist = GetSuppliersWithLateIssues;
58 my @select_supplier;
59 push @select_supplier,"";
60 foreach my $supplierid (keys %supplierlist){
61     my ($count, @dummy) = GetLateIssues($supplierid);
62     my ($count2, @dummy2) = GetMissingIssues($supplierid);
63     my $counting = $count+$count2;
64     $supplierlist{$supplierid} = $supplierlist{$supplierid}." ($counting)";
65     push @select_supplier, $supplierid
66 }
67 my $CGIsupplier=CGI::scrolling_list(
68             -name     => 'supplierid',
69             -values   => \@select_supplier,
70             -default  => $supplierid,
71             -labels   => \%supplierlist,
72             -size     => 1,
73             -multiple => 0 );
74
75 my @lateissues;
76 my $count;
77 ($count,@lateissues) = GetLateIssues($supplierid) if $supplierid;
78 my @missingissues;
79 my $count2;
80 ($count2, @missingissues) = GetMissingIssues($supplierid) if $supplierid;
81 my @supplierinfo;
82 my $nothing;
83 ($nothing,@supplierinfo)=GetBookSeller($supplierid) if $supplierid;
84
85 my ($template, $loggedinuser, $cookie)
86 = get_template_and_user({template_name => "serials/lateissues.tmpl",
87                 query => $query,
88                 type => "intranet",
89                 authnotrequired => 0,
90                 flagsrequired => {catalogue => 1},
91                 debug => 1,
92                 });
93
94 $template->param(
95     CGIsupplier => $CGIsupplier,
96     lateissues => \@lateissues,
97     missingissues => \@missingissues,
98     supplierid => $supplierid,    
99     phone => $supplierinfo[0]->{phone},
100     booksellerfax => $supplierinfo[0]->{booksellerfax},
101     bookselleremail => $supplierinfo[0]->{bookselleremail},
102     );
103 output_html_with_http_headers $query, $cookie, $template->output;