3 # Copyright 2013 ByWater Solutions
5 # This file is part of Koha.
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 3 of the License, or (at your option) any later
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.
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.
24 use C4
::Auth qw
/:DEFAULT get_session/;
32 my ( $template, $librarian, $cookie ) = get_template_and_user
(
34 template_name
=> "circ/renew.tmpl",
38 flagsrequired
=> { circulate
=> "circulate_remaining_permissions" },
42 my $schema = Koha
::Database
->new()->schema();
44 my $barcode = $cgi->param('barcode');
45 my $override_limit = $cgi->param('override_limit');
46 my $override_holds = $cgi->param('override_holds');
48 my ( $item, $issue, $borrower );
52 $item = $schema->resultset("Item")->single( { barcode
=> $barcode } );
56 $issue = $item->issues()->single();
60 $borrower = $issue->borrower();
62 if ( ( $borrower->debarred() || q{} ) lt dt_from_string
()->ymd() ) {
64 ( $can_renew, $error ) =
65 CanBookBeRenewed
( $borrower->borrowernumber(),
66 $item->itemnumber(), $override_limit );
68 if ( $error && ($error eq 'on_reserve') ) {
69 if ($override_holds) {
79 my $date_due = AddRenewal
( undef, $item->itemnumber() );
80 $template->param( date_due
=> $date_due );
84 $error = "patron_restricted";
88 $error = "no_checkout";
98 borrower
=> $borrower,
103 output_html_with_http_headers
( $cgi, $cookie, $template->output );