Add the faceted search facility
[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 C4::Auth;
24 use C4::Context;
25
26 use CGI;
27 use C4::Interface::CGI::Output;
28
29 use C4::Koha;
30 use C4::Letters;
31 use C4::Serials;
32
33 my $dbh = C4::Context->dbh;
34
35 my $input = new CGI;
36 my $print = $input->param('print');
37
38
39 my ($template, $loggedinuser, $cookie)
40     = get_template_and_user({template_name => 'serials/viewalerts.tmpl',
41                  query => $input,
42                  type => "intranet",
43                  authnotrequired => 0,
44                  flagsrequired => {catalogue => 1},
45                  debug => 1,
46                  });
47
48 my $subscriptionid=$input->param('subscriptionid');
49
50 my $borrowers = getalert('','issue',$subscriptionid);
51 my $subscription = GetSubscription($subscriptionid);
52
53 foreach (@$borrowers) {
54     $_->{name} = findrelatedto('borrower',$_->{borrowernumber});
55 }
56 $template->param(alertloop => $borrowers,
57                 bibliotitle => $subscription->{bibliotitle},
58                 subscriptionid => $subscriptionid);
59
60 output_html_with_http_headers $input, $cookie, $template->output;