bugfix
[koha.git] / renewscript.pl
blobb6e7ab7bda38e6ab0a12673edc44418d78530f5f
1 #!/usr/bin/perl
3 # $Id$
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
16 # version.
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
26 use CGI;
27 use C4::Circulation::Renewals2;
28 #get input
29 my $input= new CGI;
30 #print $input->header;
32 #print $input->dump;
34 my @names=$input->param();
35 my $count=@names;
36 my %data;
38 for (my $i=0;$i<$count;$i++){
39 if ($names[$i] =~ /renew/){
40 my $temp=$names[$i];
41 $temp=~ s/renew_item_//;
42 $data{$temp}=$input->param($names[$i]);
45 my %env;
46 my $bornum=$input->param("bornum");
47 while ( my ($key, $value) = each %data) {
48 # print "$key = $value\n";
49 if ($value eq 'y'){
50 #means we want to renew this item
51 #check its status
52 my $status=renewstatus(\%env,$bornum,$key);
53 # print $status;
54 if ($status == 1){
55 renewbook(\%env,$bornum,$key);
60 print $input->redirect("/cgi-bin/koha/moremember.pl?bornum=$bornum");