long WAS the road to 1.3.0...
[koha.git] / tidyaccounts.pl
1 #!/usr/bin/perl
2 #
3 # written 31/5/00 by chris@katipo.co.nz to make a way to fix account mistakes
4 #
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 strict;
25 use C4::Database;
26 use CGI;
27 use C4::Accounts2;
28
29 my $input=new CGI;
30
31 #print $input->header();
32 #print $input->dump;
33
34 my $bornum=$input->param('bornum');
35
36 my @name=$input->param;
37
38 foreach my $key (@name){
39   if ($key ne 'bornum'){
40     my $temp=$input->param($key);
41     
42 #    print $temp,$key;
43     if ($temp ne ''){
44       fixaccounts($bornum,$key,$temp);
45    
46     }
47   }
48 }
49     
50 print $input->redirect("boraccount.pl?bornum=$bornum");