Bug 35248: Add Koha::Biblio->bookings unit test
[koha.git] / preservation / print_slip.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19 use CGI qw ( -utf8 );
20 use C4::Context;
21 use C4::Auth qw( get_template_and_user );
22 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
23 use C4::Letters;
24 use Koha::Patrons;
25 use Koha::Preservation::Train::Items;
26
27 my $input          = CGI->new;
28 my @train_item_ids = $input->multi_param('train_item_id');
29
30 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
31     {
32         template_name => "circ/printslip.tt",
33         query         => $input,
34         type          => "intranet",
35         flagsrequired => { preservation => '*' },
36     }
37 );
38
39 my $logged_in_user = Koha::Patrons->find($loggedinuser);
40 my $branch         = C4::Context->userenv->{'branch'};
41
42 my @slips;
43 for my $train_item_id (@train_item_ids) {
44     my $train_item = Koha::Preservation::Train::Items->find($train_item_id);
45     my $letter     = C4::Letters::GetPreparedLetter(
46         module      => 'preservation',
47         letter_code => $train_item->processing->letter_code,
48         branchcode  => $branch,
49         lang        => $logged_in_user->lang,
50         tables      => {
51             preservation_train_items => $train_item_id,
52         },
53         message_transport_type => 'print'
54     );
55     push @slips, {
56         content => $letter->{content},
57         is_html => $letter->{is_html},
58     };
59 }
60
61 $template->param(
62     slips      => \@slips,
63     caller     => 'preservation',
64     stylesheet => C4::Context->preference("SlipCSS"),
65 );
66
67 $template->param( IntranetSlipPrinterJS => C4::Context->preference('IntranetSlipPrinterJS') );
68
69 output_html_with_http_headers $input, $cookie, $template->output;