Koha/preservation/print_slip.pl
Nick Clemens cc69c69614
Bug 33547: (QA follow-up) Tidy
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-10-23 11:33:53 -03:00

75 lines
2.2 KiB
Perl
Executable file

#!/usr/bin/perl
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use CGI qw ( -utf8 );
use C4::Context;
use C4::Auth qw( get_template_and_user );
use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
use C4::Letters;
use Koha::Patrons;
use Koha::Preservation::Train::Items;
my $input = CGI->new;
my $train_item_id = $input->param('train_item_id');
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
{
template_name => "circ/printslip.tt",
query => $input,
type => "intranet",
flagsrequired => { preservation => '*' },
}
);
my $logged_in_user = Koha::Patrons->find($loggedinuser);
my $branch = C4::Context->userenv->{'branch'};
my $train_item = Koha::Preservation::Train::Items->find($train_item_id);
unless ($train_item) {
print $input->redirect("/cgi-bin/koha/errors/404.pl");
exit;
}
my $train = $train_item->train;
my $letter = C4::Letters::GetPreparedLetter(
module => 'preservation',
letter_code => $train_item->processing->letter_code,
branchcode => $branch,
lang => $logged_in_user->lang,
tables => {
preservation_train_items => $train_item_id,
},
message_transport_type => 'print'
);
my $slip = $letter->{content};
my $is_html = $letter->{is_html};
$template->param(
slip => $slip,
plain => !$is_html,
caller => 'preservation',
stylesheet => C4::Context->preference("SlipCSS"),
);
$template->param( IntranetSlipPrinterJS => C4::Context->preference('IntranetSlipPrinterJS') );
output_html_with_http_headers $input, $cookie, $template->output;