3 # Copyright 2014 ByWater Solutions
4 # Copyright 2016 Aleisha Amohia <aleisha@catalyst.net.nz>
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 3 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 use C4
::Items
qw(GetItem ModItem);
29 use C4
::Auth
qw(check_cookie_auth);
35 my ( $auth_status, $sessionID ) =
36 check_cookie_auth
( $input->cookie('CGISESSID'),
37 { circulate
=> 'circulate_remaining_permissions' } );
39 if ( $auth_status ne "ok" ) {
43 binmode STDOUT
, ":encoding(UTF-8)";
44 print $input->header( -type
=> 'text/plain', -charset
=> 'UTF-8' );
46 my $itemnumber = $input->param('itemnumber');
47 my $borrowernumber = $input->param('borrowernumber');
48 my $override_limit = $input->param('override_limit');
49 my $exempt_fine = $input->param('exempt_fine');
50 my $branchcode = $input->param('branchcode')
51 || C4
::Context
->userenv->{'branch'};
53 # Expect these inputs to come in as JSON boolean values
54 $override_limit = $override_limit ?
$override_limit eq 'true' : undef;
55 $exempt_fine = $exempt_fine ?
$exempt_fine eq 'true' : undef;
57 my $item = Koha
::Items
->find($itemnumber);
59 my $barcode = $item ?
$item->barcode : undef; # We certainly will want to return an error code
62 $data->{itemnumber
} = $itemnumber;
63 $data->{borrowernumber
} = $borrowernumber;
64 $data->{branchcode
} = $branchcode;
66 if ( C4
::Context
->preference("InProcessingToShelvingCart") ) {
67 my $item = GetItem
($itemnumber);
68 if ( $item->{'location'} eq 'PROC' ) {
69 $item->{'location'} = 'CART';
70 ModItem
( $item, $item->{'biblionumber'}, $item->{'itemnumber'} );
74 if ( C4
::Context
->preference("ReturnToShelvingCart") ) {
75 my $item = GetItem
($itemnumber);
76 $item->{'location'} = 'CART';
77 ModItem
( $item, $item->{'biblionumber'}, $item->{'itemnumber'} );
80 my $checkout = Koha
::Checkouts
->find({ itemnumber
=> $itemnumber });
81 $data->{patronnote
} = $checkout ?
$checkout->note : q
||;
83 ( $data->{returned
} ) = AddReturn
( $barcode, $branchcode, $exempt_fine );