Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

100 lines
2.9 KiB

#!/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::Auth qw(get_template_and_user checkpw);
use C4::Circulation;
use C4::Output;
use List::MoreUtils qw( uniq );
use Try::Tiny;
my $cgi = new CGI;
# 404 if feature is disabled
unless ( C4::Context->preference('SelfCheckInModule') ) {
print $cgi->redirect("/cgi-bin/koha/errors/404.pl");
exit;
}
# Let Auth know this is a SCI context
$cgi->param( -name => 'sci_user_login', -values => [1] );
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
{
template_name => "sci/sci-main.tt",
authnotrequired => 0,
flagsrequired => { self_check => 'self_checkin_module' },
query => $cgi,
type => "opac"
}
);
my $op = $cgi->param('op') // '';
if ( $op eq 'check_in' ) {
## Get the barcodes, perform some basic validation
# Remove empty ones
my @barcodes = grep { $_ ne '' } $cgi->multi_param('barcode');
# Remove duplicates
@barcodes = uniq @barcodes;
# Read the library we are logged in from userenv
my $library = C4::Context->userenv->{'branch'};
my @success;
my @errors;
# Return items
foreach my $barcode (@barcodes) {
try {
my ( $success, $messages, $checkout, $patron ) =
AddReturn( $barcode, $library );
if ($success) {
push @success,
{
barcode => $barcode,
messages => $messages,
checkout => $checkout,
patron => $patron
};
}
else {
push @errors,
{
barcode => $barcode,
messages => $messages,
checkout => $checkout,
patron => $patron
};
}
}
catch {
push @errors, { barcode => $barcode, messages => 'unknown_error' };
};
}
$template->param( success => \@success, errors => \@errors, checkins => 1 );
}
# Make sure timeout has a reasonable value
my $timeout = C4::Context->preference('SelfCheckInTimeout') || 120;
$template->param( refresh_timeout => $timeout );
output_html_with_http_headers $cgi, $cookie, $template->output, undef, { force_no_caching => 1 };