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