POD added.
[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     push @select_supplier, $supplierid
62 }
63 my $CGIsupplier=CGI::scrolling_list(
64             -name     => 'supplierid',
65             -values   => \@select_supplier,
66             -default  => $supplierid,
67             -labels   => \%supplierlist,
68             -size     => 1,
69             -multiple => 0 );
70
71 my @lateissues;
72 @lateissues = GetLateIssues($supplierid) if $supplierid;
73 my @supplierinfo;
74 my $nothing;
75 ($nothing,@supplierinfo)=bookseller($supplierid) if $supplierid;
76
77 my ($template, $loggedinuser, $cookie)
78 = get_template_and_user({template_name => "serials/lateissues.tmpl",
79                 query => $query,
80                 type => "intranet",
81                 authnotrequired => 0,
82                 flagsrequired => {catalogue => 1},
83                 debug => 1,
84                 });
85
86 $template->param(
87     CGIsupplier => $CGIsupplier,
88     lateissues => \@lateissues,
89     phone => $supplierinfo[0]->{phone},
90     booksellerfax => $supplierinfo[0]->{booksellerfax},
91     bookselleremail => $supplierinfo[0]->{bookselleremail},
92     );
93 output_html_with_http_headers $query, $cookie, $template->output;