this file has been changed by serials-recieve.pl
[koha.git] / serials / printlist.pl
1 #!/usr/bin/perl
2 # NOTE: Use standard 8-space tabs for this file (indents are 4 spaces)
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 # $Id$
22
23 =head1 NAME
24
25 printlist.pl
26
27 =head1 DESCRIPTION
28
29 this script print the list of members who have reserved the subscription given on input arg.
30
31 =head1 PARAMETERS
32
33 =over 4
34
35 =item serialseq
36
37 =item subscriptionid
38
39 =back
40
41 =cut
42
43 use HTML::Template;
44 use strict;
45 require Exporter;
46 use C4::Context;
47 use C4::Output;  # contains gettemplate
48 use CGI;
49 use C4::Auth;
50 use C4::Serials;
51 use C4::Interface::CGI::Output;
52 use C4::Koha;
53
54 my $query=new CGI;
55
56 my $serialseq=$query->param('serialseq');
57 my $subscriptionid=$query->param('subscriptionid');
58 my $subscription = GetSubscription($subscriptionid);
59 $subscription->{'distributedto'} =~ s/\n/<br\/>/g;
60
61 my ($template, $loggedinuser, $cookie)
62 = get_template_and_user({template_name => "serials/printlist.tmpl",
63                 query => $query,
64                 type => "intranet",
65                 authnotrequired => 0,
66                 flagsrequired => {catalogue => 1},
67                 debug => 1,
68                 });
69 $template->param(serialseq => $serialseq,
70                 title => $subscription->{bibliotitle},
71                 branchname => getbranchdetail(C4::Context->userenv->{'branch'})->{branchname},
72                 branchaddress1 => getbranchdetail(C4::Context->userenv->{'branch'})->{address1},
73                 branchaddress2 => getbranchdetail(C4::Context->userenv->{'branch'})->{address2},
74                 branchaddress3 => getbranchdetail(C4::Context->userenv->{'branch'})->{address3},
75                 branchphone => getbranchdetail(C4::Context->userenv->{'branch'})->{branchphone},
76                 branchemail => getbranchdetail(C4::Context->userenv->{'branch'})->{branchemail},
77                 distributedto => $subscription->{'distributedto'},
78                 );
79 output_html_with_http_headers $query, $cookie, $template->output;
80
81
82 # Local Variables:
83 # tab-width: 8
84 # End: