moving boraccount.pl to members directory
[koha.git] / bull / 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 use HTML::Template;
22 use strict;
23 require Exporter;
24 use C4::Context;
25 use C4::Output;  # contains gettemplate
26 use CGI;
27 use C4::Auth;
28 use C4::Bull;
29 use C4::Interface::CGI::Output;
30 use C4::Koha;
31
32 my $query=new CGI;
33
34 my $serialseq=$query->param('serialseq');
35 my $subscriptionid=$query->param('subscriptionid');
36 my $subscription = getsubscription($subscriptionid);
37 $subscription->{'distributedto'} =~ s/\n/<br\/>/g;
38
39 my ($template, $loggedinuser, $cookie)
40 = get_template_and_user({template_name => "bull/printlist.tmpl",
41                                 query => $query,
42                                 type => "intranet",
43                                 authnotrequired => 0,
44                                 flagsrequired => {catalogue => 1},
45                                 debug => 1,
46                                 });
47 $template->param(serialseq => $serialseq,
48                                 title => $subscription->{bibliotitle},
49                                 branchname => getbranchdetail(C4::Context->userenv->{'branch'})->{branchname},
50                                 branchaddress1 => getbranchdetail(C4::Context->userenv->{'branch'})->{address1},
51                                 branchaddress2 => getbranchdetail(C4::Context->userenv->{'branch'})->{address2},
52                                 branchaddress3 => getbranchdetail(C4::Context->userenv->{'branch'})->{address3},
53                                 branchphone => getbranchdetail(C4::Context->userenv->{'branch'})->{branchphone},
54                                 branchemail => getbranchdetail(C4::Context->userenv->{'branch'})->{branchemail},
55                                 distributedto => $subscription->{'distributedto'},
56                                 );
57 output_html_with_http_headers $query, $cookie, $template->output;
58
59
60 # Local Variables:
61 # tab-width: 8
62 # End: