Bug 14224: Reintroduce previous copyright
[koha.git] / svc / checkin
1 #!/usr/bin/perl
2
3 # Copyright 2014 ByWater Solutions
4 # Copyright 2016 Aleisha Amohia <aleisha@catalyst.net.nz>
5 #
6 # This file is part of Koha.
7 #
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
11 # version.
12 #
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.
16 #
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.
20
21 use Modern::Perl;
22
23 use CGI;
24 use JSON qw(to_json);
25
26 use C4::Circulation;
27 use C4::Items qw(GetBarcodeFromItemnumber GetItem ModItem);
28 use C4::Context;
29 use C4::Auth qw(check_cookie_auth);
30
31 my $input = new CGI;
32
33 my ( $auth_status, $sessionID ) =
34   check_cookie_auth( $input->cookie('CGISESSID'),
35     { circulate => 'circulate_remaining_permissions' } );
36
37 if ( $auth_status ne "ok" ) {
38     exit 0;
39 }
40
41 binmode STDOUT, ":encoding(UTF-8)";
42 print $input->header( -type => 'text/plain', -charset => 'UTF-8' );
43
44 my $itemnumber     = $input->param('itemnumber');
45 my $borrowernumber = $input->param('borrowernumber');
46 my $override_limit = $input->param('override_limit');
47 my $exempt_fine    = $input->param('exempt_fine');
48 my $branchcode     = $input->param('branchcode')
49   || C4::Context->userenv->{'branch'};
50
51 # Expect these inputs to come in as JSON boolean values
52 $override_limit = $override_limit ? $override_limit eq 'true' : undef;
53 $exempt_fine    = $exempt_fine    ? $exempt_fine eq 'true'    : undef;
54
55 my $barcode = GetBarcodeFromItemnumber($itemnumber);
56
57 my $data;
58 $data->{itemnumber}     = $itemnumber;
59 $data->{borrowernumber} = $borrowernumber;
60 $data->{branchcode}     = $branchcode;
61
62 if ( C4::Context->preference("InProcessingToShelvingCart") ) {
63     my $item = GetItem($itemnumber);
64     if ( $item->{'location'} eq 'PROC' ) {
65         $item->{'location'} = 'CART';
66         ModItem( $item, $item->{'biblionumber'}, $item->{'itemnumber'} );
67     }
68 }
69
70 if ( C4::Context->preference("ReturnToShelvingCart") ) {
71     my $item = GetItem($itemnumber);
72     $item->{'location'} = 'CART';
73     ModItem( $item, $item->{'biblionumber'}, $item->{'itemnumber'} );
74 }
75
76 my $dbh = C4::Context->dbh;
77 my $query = "SELECT note FROM issues WHERE itemnumber = ?";
78 my $sth = $dbh->prepare($query);
79 $sth->execute($itemnumber);
80 my $issue = $sth->fetchrow_hashref;
81 my $patronnote = $issue->{note};
82 $data->{patronnote} = $patronnote;
83
84 ( $data->{returned} ) = AddReturn( $barcode, $branchcode, $exempt_fine );
85
86 print to_json($data);