adding printcirculationsplit parameter (already existed, but was not in systempref...
[koha.git] / renewscript.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 #written 18/1/2000 by chris@katipo.co.nz
6 #script to renew items from the web
7
8
9 # Copyright 2000-2002 Katipo Communications
10 #
11 # This file is part of Koha.
12 #
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.
17 #
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.
21 #
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
25
26 use CGI;
27 use C4::Circulation::Renewals2;
28 #get input
29 my $input= new CGI;
30 #print $input->header;
31
32 #print $input->dump;
33
34 my @names=$input->param();
35 my $count=@names;
36 my %data;
37
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]);
43   }
44 }
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);
56      }
57    }
58 }
59
60 print $input->redirect("/cgi-bin/koha/moremember.pl?bornum=$bornum");