Bug 11349: Change .tmpl -> .tt in scripts using templates
[koha.git] / opac / sco / printslip.pl
1 #!/usr/bin/perl
2
3 # Copyright 2012 ByWater Solutions
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 =head1 printslip.pl
21
22 Script to allow SCO patrons to print a receipt for their checkout.
23
24 It is called from sco-main.pl
25
26 =cut
27
28
29 use strict;
30 use warnings;
31 use CGI;
32 use C4::Context;
33 use C4::Auth qw/:DEFAULT get_session/;
34 use C4::Output;
35 use C4::Members;
36 use C4::Koha;
37
38 my $input = new CGI;
39 my $sessionID = $input->cookie("CGISESSID");
40 my $session = get_session($sessionID);
41
42 my $print = $input->param('print');
43 my $error = $input->param('error');
44
45 # patrons still need to be able to print receipts
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
47     {
48         template_name   => "/sco/printslip.tt",
49         query           => $input,
50         type            => "opac",
51     }
52 );
53
54 my $borrowernumber = $input->param('borrowernumber');
55 my $branch=C4::Context->userenv->{'branch'};
56 my ($slip, $is_html);
57 if (my $letter = IssueSlip ($session->param('branch') || $branch, $borrowernumber, $print eq "qslip")) {
58     $slip = $letter->{content};
59     $is_html = $letter->{is_html};
60 }
61
62 $template->{VARS}->{slip} = $slip;
63 $template->{VARS}->{plain} = !$is_html;
64 $template->{VARS}->{borrowernumber} = $borrowernumber;
65 $template->{VARS}->{stylesheet} = C4::Context->preference("SlipCSS");
66 $template->{VARS}->{error} = $error;
67
68 output_html_with_http_headers $input, $cookie, $template->output;