3 # This file is part of Koha.
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.
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.
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>.
22 use C4
::Auth
qw(get_template_and_user checkpw);
26 use List
::MoreUtils
qw( uniq );
31 # 404 if feature is disabled
32 unless ( C4
::Context
->preference('SelfCheckInModule') ) {
33 print $cgi->redirect("/cgi-bin/koha/errors/404.pl");
37 # Let Auth know this is a SCI context
38 $cgi->param( -name
=> 'sci_user_login', -values => [1] );
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
42 template_name
=> "sci/sci-main.tt",
44 flagsrequired
=> { self_check
=> 'self_checkin_module' },
50 my $op = $cgi->param('op') // '';
52 if ( $op eq 'check_in' ) {
53 ## Get the barcodes, perform some basic validation
55 my @barcodes = grep { $_ ne '' } $cgi->multi_param('barcode');
58 @barcodes = uniq
@barcodes;
60 # Read the library we are logged in from userenv
61 my $library = C4
::Context
->userenv->{'branch'};
66 foreach my $barcode (@barcodes) {
68 my ( $success, $messages, $checkout, $patron ) =
69 AddReturn
( $barcode, $library );
74 messages
=> $messages,
75 checkout
=> $checkout,
83 messages
=> $messages,
84 checkout
=> $checkout,
90 push @errors, { barcode
=> $barcode, messages
=> 'unknown_error' };
93 $template->param( success
=> \
@success, errors
=> \
@errors, checkins
=> 1 );
96 # Make sure timeout has a reasonable value
97 my $timeout = C4
::Context
->preference('SelfCheckInTimeout') || 120;
98 $template->param( refresh_timeout
=> $timeout );
100 output_html_with_http_headers
$cgi, $cookie, $template->output, undef, { force_no_caching
=> 1 };