5 #written 18/1/2000 by chris@katipo.co.nz
6 #script to renew items from the web
9 # Copyright 2000-2002 Katipo Communications
11 # This file is part of Koha.
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License along with
23 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
24 # Suite 330, Boston, MA 02111-1307 USA
27 use C4
::Circulation
::Renewals2
;
30 #print $input->header;
34 my @names=$input->param();
38 for (my $i=0;$i<$count;$i++){
39 if ($names[$i] =~ /renew/){
41 $temp=~ s/renew_item_//;
42 $data{$temp}=$input->param($names[$i]);
46 my $bornum=$input->param("bornum");
47 while ( my ($key, $value) = each %data) {
48 # print "$key = $value\n";
50 #means we want to renew this item
52 my $status=renewstatus
(\
%env,$bornum,$key);
55 renewbook
(\
%env,$bornum,$key);
60 print $input->redirect("/cgi-bin/koha/moremember.pl?bornum=$bornum");