Receive serials now display both late AND waited serials
[koha.git] / serials / viewalerts.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use strict;
23 use CGI;
24 use C4::Auth;
25 use C4::Context;
26 use C4::Output;
27 use C4::Koha;
28 use C4::Letters;
29 use C4::Serials;
30
31 my $dbh = C4::Context->dbh;
32
33 my $input = new CGI;
34 my $print = $input->param('print');
35 my $template_name;
36
37 my ($template, $loggedinuser, $cookie)
38     = get_template_and_user({template_name => 'serials/viewalerts.tmpl',
39                  query => $input,
40                  type => "intranet",
41                  authnotrequired => 0,
42                  flagsrequired => {serials => 1},
43                  debug => 1,
44                  });
45
46 my $subscriptionid=$input->param('subscriptionid');
47
48 my $borrowers = getalert('','issue',$subscriptionid);
49 my $subscription = GetSubscription($subscriptionid);
50
51 foreach (@$borrowers) {
52     $_->{name} = findrelatedto('borrower',$_->{borrowernumber});
53 }
54 $template->param(alertloop => $borrowers,
55                 bibliotitle => $subscription->{bibliotitle},
56                 subscriptionid => $subscriptionid);
57
58 output_html_with_http_headers $input, $cookie, $template->output;