bugfix
[koha.git] / tidyaccounts.pl
blobbebc1d05c3f2be6f4e8497b13a1d9776c2373715
1 #!/usr/bin/perl
3 # $Id$
6 # written 31/5/00 by chris@katipo.co.nz to make a way to fix account mistakes
10 # Copyright 2000-2002 Katipo Communications
12 # This file is part of Koha.
14 # Koha is free software; you can redistribute it and/or modify it under the
15 # terms of the GNU General Public License as published by the Free Software
16 # Foundation; either version 2 of the License, or (at your option) any later
17 # version.
19 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
20 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
21 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License along with
24 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
25 # Suite 330, Boston, MA 02111-1307 USA
27 use strict;
28 use CGI;
29 use C4::Accounts2;
31 my $input=new CGI;
33 #print $input->header();
34 #print $input->dump;
36 my $bornum=$input->param('bornum');
38 my @name=$input->param;
40 foreach my $key (@name){
41 if ($key ne 'bornum'){
42 my $temp=$input->param($key);
44 # print $temp,$key;
45 if ($temp ne ''){
46 fixaccounts($bornum,$key,$temp);
52 print $input->redirect("boraccount.pl?bornum=$bornum");