1783cdba7c
template guideline compliance: on circulation template, selected status of each option in date options (day/month/year) is managed by a TMPL_IF/TMPL_ELSE outside the <option>. bug fixed: on circulation template, today issues could not be renewed with new reserve/renewscript.pl items list coming from HTTP request. bug fixed: on return template, included template to close the <head> was wrong. bug fixed: on member/moremember template, renew items comply with new reserve/renewscript. simplification: deletion of useless input param look-up table in reserve/renewscript.pl, direct use of CGI method.
69 lines
1.6 KiB
Perl
Executable file
69 lines
1.6 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# $Id$
|
|
|
|
#written 18/1/2000 by chris@katipo.co.nz
|
|
#script to renew items from the web
|
|
|
|
|
|
# Copyright 2000-2002 Katipo Communications
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 2 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
|
|
# Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
use CGI;
|
|
use C4::Circulation::Circ2;
|
|
|
|
my $input = new CGI;
|
|
|
|
#
|
|
# find items to renew, all items or a selection of items
|
|
#
|
|
|
|
my @data;
|
|
if ($input->param('renew_all')) {
|
|
@data = $input->param('all_items[]');
|
|
}
|
|
else {
|
|
@data = $input->param('items[]');
|
|
}
|
|
|
|
#
|
|
# renew items
|
|
#
|
|
my %env;
|
|
my $cardnumber = $input->param("cardnumber");
|
|
my $bornum = $input->param("bornum");
|
|
|
|
foreach my $itemno (@data) {
|
|
#check status before renewing issue
|
|
if (renewstatus(\%env,$bornum,$itemno)){
|
|
renewbook(\%env,$bornum,$itemno);
|
|
}
|
|
}
|
|
|
|
#
|
|
# redirection to the referrer page
|
|
#
|
|
if ($input->param('destination') eq "circ"){
|
|
print $input->redirect(
|
|
'/cgi-bin/koha/circ/circulation.pl?findborrower='.$cardnumber
|
|
);
|
|
}
|
|
else {
|
|
print $input->redirect(
|
|
'/cgi-bin/koha/members/moremember.pl?bornum='.$bornum
|
|
);
|
|
}
|