Bug 21637: Fixed upercase letter in EasyAnalyticalRecords syspref
[koha.git] / opac / opac-renew.pl
blob73606b0649aa9cc3539f996420049110f3d4988a
1 #!/usr/bin/perl
3 #written 18/1/2000 by chris@katipo.co.nz
4 # adapted for use in the hlt opac by finlay@katipo.co.nz 29/11/2002
5 # script to renew items from the web
6 # Parts Copyright 2010,2011 Catalyst IT
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 use Modern::Perl;
26 use CGI qw ( -utf8 );
27 use C4::Circulation;
28 use C4::Auth;
29 use C4::Context;
30 use C4::Items;
31 use C4::Members;
32 use Koha::Patrons;
33 use Date::Calc qw( Today Date_to_Days );
34 my $query = new CGI;
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
38 template_name => "opac-user.tt",
39 query => $query,
40 type => "opac",
41 authnotrequired => 0,
42 debug => 1,
44 );
45 my @items = $query->multi_param('item');
47 my $opacrenew = C4::Context->preference("OpacRenewalAllowed");
49 my $errorstring = q{};
50 my $renewed = q{};
52 my $patron = Koha::Patrons->find( $borrowernumber );
54 if ( $patron->category->effective_BlockExpiredPatronOpacActions
55 && $patron->is_expired )
57 $errorstring = 'card_expired';
59 else {
60 my @renewed;
61 for my $itemnumber (@items) {
62 my ( $status, $error ) =
63 CanBookBeRenewed( $borrowernumber, $itemnumber );
64 if ( $status == 1 && $opacrenew == 1 ) {
65 my $renewalbranch = C4::Context->preference('OpacRenewalBranch');
66 my $branchcode;
67 if ( $renewalbranch eq 'itemhomebranch' ) {
68 my $item = GetItem($itemnumber);
69 $branchcode = $item->{'homebranch'};
71 elsif ( $renewalbranch eq 'patronhomebranch' ) {
72 $branchcode = Koha::Patrons->find( $borrowernumber )->branchcode;
74 elsif ( $renewalbranch eq 'checkoutbranch' ) {
75 my $issue = GetOpenIssue($itemnumber);
76 $branchcode = $issue->{'branchcode'};
78 elsif ( $renewalbranch eq 'NULL' ) {
79 $branchcode = '';
81 else {
82 $branchcode = 'OPACRenew';
84 AddRenewal( $borrowernumber, $itemnumber, $branchcode, undef, undef );
85 push( @renewed, $itemnumber );
87 else {
88 $errorstring .= $error . "|";
91 $renewed = join( ':', @renewed );
94 print $query->redirect("/cgi-bin/koha/opac-user.pl?renew_error=$errorstring&renewed=$renewed");