Savannah seems out of synch.Code cleaning removal of Date::Manip
[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::Interface::CGI::Output;
47 use C4::Context;
48 use C4::Bookseller;
49
50 my $query = new CGI;
51 # my $title = $query->param('title');
52 # my $ISSN = $query->param('ISSN');
53 # my @subscriptions = GetSubscriptions($title,$ISSN);
54
55 my $supplierid = $query->param('supplierid');
56 my %supplierlist = GetSuppliersWithLateIssues;
57 my @select_supplier;
58 push @select_supplier,"";
59 foreach my $supplier (keys %supplierlist){
60     push @select_supplier, $supplier
61 }
62 my $CGIsupplier=CGI::scrolling_list(
63             -name     => 'supplierid',
64             -values   => \@select_supplier,
65             -default  => $supplierid,
66             -labels   => \%supplierlist,
67             -size     => 1,
68             -multiple => 0 );
69
70 my ($count,@lateissues);
71 ($count,@lateissues) = GetLateIssues($supplierid) ;
72 my @supplierinfo=GetBookSeller($supplierid) if $supplierid;
73
74 my ($template, $loggedinuser, $cookie)
75 = get_template_and_user({template_name => "serials/lateissues.tmpl",
76                 query => $query,
77                 type => "intranet",
78                 authnotrequired => 0,
79                 flagsrequired => {catalogue => 1},
80                 debug => 1,
81                 });
82
83 $template->param(
84     CGIsupplier => $CGIsupplier,
85     lateissues => \@lateissues,
86     phone => $supplierinfo[0]->{phone},
87     booksellerfax => $supplierinfo[0]->{booksellerfax},
88     bookselleremail => $supplierinfo[0]->{bookselleremail},
89     );
90 output_html_with_http_headers $query, $cookie, $template->output;