Finalized XML version for intranet
[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
44 use strict;
45 require Exporter;
46 use C4::Context;
47 use CGI;
48 use C4::Auth;
49 use C4::Serials;
50 use C4::Interface::CGI::Output;
51 use C4::Koha;
52
53 my $query=new CGI;
54
55 my $serialseq=$query->param('serialseq');
56 my $subscriptionid=$query->param('subscriptionid');
57 my $subscription = GetSubscription($subscriptionid);
58 $subscription->{'distributedto'} =~ s/\n/<br\/>/g;
59
60 my ($template, $loggedinuser, $cookie)
61 = get_template_and_user({template_name => "serials/printlist.tmpl",
62                 query => $query,
63                 type => "intranet",
64                 authnotrequired => 0,
65                 flagsrequired => {catalogue => 1},
66                 debug => 1,
67                 });
68 $template->param(serialseq => $serialseq,
69                 title => $subscription->{bibliotitle},
70                 branchname => getbranchdetail(C4::Context->userenv->{'branch'})->{branchname},
71                 branchaddress1 => getbranchdetail(C4::Context->userenv->{'branch'})->{address1},
72                 branchaddress2 => getbranchdetail(C4::Context->userenv->{'branch'})->{address2},
73                 branchaddress3 => getbranchdetail(C4::Context->userenv->{'branch'})->{address3},
74                 branchphone => getbranchdetail(C4::Context->userenv->{'branch'})->{branchphone},
75                 branchemail => getbranchdetail(C4::Context->userenv->{'branch'})->{branchemail},
76                 distributedto => $subscription->{'distributedto'},
77                 );
78 output_html_with_http_headers $query, $cookie, $template->output;
79
80
81 # Local Variables:
82 # tab-width: 8
83 # End: