bugfix
[koha.git] / insertjdata.pl
blob13d708768a28b0001a9ab4c8f01ebd6f27648eaa
1 #!/usr/bin/perl
3 #script to enter borrower data into the data base
4 #needs to be moved into a perl module
5 # written 9/11/99 by chris@katipo.co.nz
8 # Copyright 2000-2002 Katipo Communications
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2 of the License, or (at your option) any later
15 # version.
17 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
18 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License along with
22 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
23 # Suite 330, Boston, MA 02111-1307 USA
25 use CGI;
26 use C4::Context;
27 use C4::Input;
28 use Date::Manip;
29 use strict;
31 my $input= new CGI;
32 #print $input->header;
33 #print $input->Dump;
35 #get all the data into a hash
36 my @names=$input->param;
37 my %data;
38 my $keyfld;
39 my $keyval;
40 my $problems;
41 my $env;
42 foreach my $key (@names){
43 $data{$key}=$input->param($key);
45 my $dbh = C4::Context->dbh;
47 for (my $i=0;$i<3;$i++){
48 my $query="Select * from borrowers where borrowernumber=$data{'bornumber_child_$i'}";
49 my $sth=$dbh->prepare($query);
50 $sth->execute;
51 if (my $data=$sth->fetchrow_hashref){
52 $query="update borrowers set title='$data{'title'}',expiry='$data{'expiry'}',
53 cardnumber='$data{'cardnumber'}',sex='$data{'sex'}',ethnotes='$data{'ethnicnotes'}',
54 streetaddress='$data{'address'}',faxnumber='$data{'faxnumber'}',firstname='$data{'firstname'}',
55 altnotes='$data{'altnotes'}',dateofbirth='$data{'dateofbirth'}',contactname='$data{'contactname'}',
56 emailaddress='$data{'emailaddress'}',dateenrolled='$data{'joining'}',streetcity='$data{'streetcity'}',
57 altrelationship='$data{'altrelationship'}',othernames='$data{'othernames'}',phoneday='$data{'phoneday'}',
58 categorycode='$data{'categorycode'}',city='$data{'city'}',area='$data{'area'}',phone='$data{'phone'}',
59 borrowernotes='$data{'borrowernotes'}',altphone='$data{'altphone'}',surname='$data{'surname'}',
60 initials='$data{'initials'}',streetaddress='$data{'address'}',ethnicity='$data{'ethnicity'}'
61 where borrowernumber=$data{'borrowernumber'}";
62 # print $query;
64 }elsif ($data{"cardnumber_child_$i"} ne ''){
65 my $dob=$data{"dateofbirth_child_$i"};
66 $dob=ParseDate($dob);
67 $dob=UnixDate($dob,'%Y-%m-%d');
68 $data{'joining'}=ParseDate("today");
69 $data{'joining'}=UnixDate($data{'joining'},'%Y-%m-%d');
70 my $cardnumber=$data{"cardnumber_child_$i"};
71 my $bornum=$data{"bornumber_child_$i"};
72 my $firstname=$data{"firstname_child_$i"};
73 my $surname=$data{"surname_child_$i"};
74 my $school=$data{"school_child_$i"};
75 my $guarant=$data{'borrowernumber'};
76 my $notes=$data{"altnotes_child_$i"};
77 my $sex=$data{"sex_child_$i"};
78 $data{'contactname'}=$data{'firstname_guardian'}." ".$data{'surname_guardian'};
79 $data{'altrelationship'}="Guarantor";
80 $data{'altphone'}=$data{'phone'};
81 $query="insert into borrowers (title,expiry,cardnumber,sex,ethnotes,streetaddress,faxnumber,
82 firstname,altnotes,dateofbirth,contactname,emailaddress,dateenrolled,streetcity,
83 altrelationship,othernames,phoneday,categorycode,city,area,phone,borrowernotes,altphone,surname,
84 initials,ethnicity,borrowernumber,guarantor,school)
85 values ('','$data{'expiry'}',
86 '$cardnumber',
87 '$sex','$data{'ethnotes'}','$data{'address'}','$data{'faxnumber'}',
88 '$firstname','$data{'altnotes'}','$dob','$data{'contactname'}','$data{'emailaddress'}',
89 '$data{'joining'}','$data{'streetcity'}','$data{'altrelationship'}','$data{'othernames'}',
90 '$data{'phoneday'}','C','$data{'city'}','$data{'area'}','$data{'phone'}',
91 '$notes','$data{'altphone'}','$surname','$data{'initials'}',
92 '$data{'ethnicity'}','$bornum','$guarant','$school')";
95 #print $query;
96 my $sth2=$dbh->prepare($query);
97 $sth2->execute;
98 $sth2->finish;
99 $sth->finish;
101 print $input->redirect("/cgi-bin/koha/moremember.pl?bornum=$data{'borrowernumber'}");