Bug 10493: Add renewal script
[koha.git] / circ / renew.pl
1 #!/usr/bin/perl
2
3 # Copyright 2013 ByWater Solutions
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21
22 use CGI;
23 use C4::Context;
24 use C4::Auth qw/:DEFAULT get_session/;
25 use C4::Output;
26 use C4::Circulation;
27 use Koha::DateUtils;
28 use Koha::Database;
29
30 my $cgi = new CGI;
31
32 my ( $template, $librarian, $cookie ) = get_template_and_user(
33     {
34         template_name   => "circ/renew.tmpl",
35         query           => $cgi,
36         type            => "intranet",
37         authnotrequired => 0,
38         flagsrequired   => { circulate => "circulate_remaining_permissions" },
39     }
40 );
41
42 my $schema = Koha::Database->new()->schema();
43
44 my $barcode        = $cgi->param('barcode');
45 my $override_limit = $cgi->param('override_limit');
46 my $override_holds = $cgi->param('override_holds');
47
48 my ( $item, $issue, $borrower, $error );
49
50 if ($barcode) {
51     $item = $schema->resultset("Item")->single( { barcode => $barcode } );
52
53     if ($item) {
54
55         $issue = $item->issues()->single();
56
57         if ($issue) {
58
59             $borrower = $issue->borrower();
60
61             if ( $borrower->debarred() lt dt_from_string()->ymd() ) {
62                 my $can_renew;
63                 ( $can_renew, $error ) =
64                   CanBookBeRenewed( $borrower->borrowernumber(),
65                     $item->itemnumber(), $override_limit );
66
67                 if ( $error eq 'on_reserve' ) {
68                     if ($override_holds) {
69                         $can_renew = 1;
70                         $error     = undef;
71                     }
72                     else {
73                         $can_renew = 0;
74                     }
75                 }
76
77                 if ($can_renew) {
78                     my $date_due = AddRenewal( undef, $item->itemnumber() );
79                     $template->param( date_due => $date_due );
80                 }
81             }
82             else {
83                 $error = "patron_restricted";
84             }
85         }
86         else {
87             $error = "no_checkout";
88         }
89     }
90     else {
91         $error = "no_item";
92     }
93
94     $template->param(
95         item     => $item,
96         issue    => $issue,
97         borrower => $borrower,
98         error    => $error
99     );
100 }
101
102 output_html_with_http_headers( $cgi, $cookie, $template->output );