adding a MARC parameter in systempref ( which is ON or OFF)
[koha.git] / updatecharges.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 #script to update charges for overdue in database
6 #updates categoryitem
7 # is called by charges.pl
8 # written 1/1/2000 by chris@katipo.co.nz
9
10
11 # Copyright 2000-2002 Katipo Communications
12 #
13 # This file is part of Koha.
14 #
15 # Koha is free software; you can redistribute it and/or modify it under the
16 # terms of the GNU General Public License as published by the Free Software
17 # Foundation; either version 2 of the License, or (at your option) any later
18 # version.
19 #
20 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
21 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
22 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
23 #
24 # You should have received a copy of the GNU General Public License along with
25 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
26 # Suite 330, Boston, MA  02111-1307 USA
27
28 use strict;
29 use CGI;
30 use C4::Context;
31 use C4::Output;
32
33 my $input = new CGI;
34 #print $input->header;
35 #print startpage();
36 #print startmenu('issue');
37
38
39 my $dbh = C4::Context->dbh;
40 #print $input->dump;
41 my @names=$input->param();
42
43 foreach my $key (@names){
44
45   my $bor=substr($key,0,1);
46   my $cat=$key;
47   $cat =~ s/[A-Z]//i;
48   my $data=$input->param($key);
49   my @dat=split(',',$data);
50 #  print "$bor $cat $dat[0] $dat[1] $dat[2] <br> ";
51   my $sth=$dbh->prepare("Update categoryitem set fine=$dat[0],startcharge=$dat[1],chargeperiod=$dat[2] where
52   categorycode='$bor' and itemtype='$cat'");
53   $sth->execute;
54   $sth->finish;
55 }
56 print $input->redirect("/cgi-bin/koha/charges.pl");
57 #print endmenu('issue');
58 #print endpage();