removing ldap systempref, it's now in C4/Auth_with_ldap.pm separate package
[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 use C4::Circulation::Circ2;
29 #get input
30 my $input= new CGI;
31 #print $input->header;
32
33 #print $input->dump;
34
35 my @names=$input->param();
36 my $count=@names;
37 my %data;
38
39 for (my $i=0;$i<$count;$i++){
40   if ($names[$i] =~ /renew/){
41     my $temp=$names[$i];
42     $temp=~ s/renew_item_//;
43     $data{$temp}=$input->param($names[$i]);
44   }
45 }
46 my %env;
47 my $bornum=$input->param("bornum");
48 while ( my ($itemno, $value) = each %data) {
49 #    warn "$itemno = $value\n";
50    if ($value eq 'y'){
51      #means we want to renew this item
52      #check its status
53      my $status=renewstatus(\%env,$bornum,$itemno);
54      if ($status == 1){
55        renewbook(\%env,$bornum,$itemno);
56      }
57    }
58 }
59
60 print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$bornum");