Skip to content

Commit

Permalink
see #265
Browse files Browse the repository at this point in the history
  • Loading branch information
tipaul committed Apr 8, 2003
1 parent 533c38d commit 66ecfe5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions insertdata.pl
Expand Up @@ -31,8 +31,6 @@
use strict;

my $input= new CGI;
#print $input->header;
#print $input->dump;

#get all the data into a hash
my @names=$input->param;
Expand Down Expand Up @@ -62,7 +60,7 @@
categorycode='$data{'categorycode'}',city='$data{'city'}',area='$data{'area'}',phone='$data{'phone'}',
borrowernotes='$data{'borrowernotes'}',altphone='$data{'altphone'}',surname='$data{'surname'}',
initials='$data{'initials'}',physstreet='$data{'streetaddress'}',ethnicity='$data{'ethnicity'}',
gonenoaddress='$data{'gna'}',lost='$data{'lost'}',debarred='$data{'debarred'}',textmessaging='$data{'textmessaging'}'
gonenoaddress='$data{'gna'}',lost='$data{'lost'}',debarred='$data{'debarred'}',textmessaging='$data{'textmessaging'}', branchcode = '$data{'branchcode'}'
where borrowernumber=$data{'borrowernumber'}";
# print $query;

Expand All @@ -72,13 +70,13 @@
$query="insert into borrowers (title,expiry,cardnumber,sex,ethnotes,streetaddress,faxnumber,
firstname,altnotes,dateofbirth,contactname,emailaddress,textmessaging,dateenrolled,streetcity,
altrelationship,othernames,phoneday,categorycode,city,area,phone,borrowernotes,altphone,surname,
initials,ethnicity,borrowernumber,physstreet) values ('$data{'title'}','$data{'expiry'}','$data{'cardnumber'}',
initials,ethnicity,borrowernumber,physstreet,branchcode) values ('$data{'title'}','$data{'expiry'}','$data{'cardnumber'}',
'$data{'sex'}','$data{'ethnotes'}','$data{'address'}','$data{'faxnumber'}',
'$data{'firstname'}','$data{'altnotes'}','$data{'dateofbirth'}','$data{'contactname'}','$data{'emailaddress'}','$data{'textmessaging'}',
'$data{'joining'}','$data{'streetcity'}','$data{'altrelationship'}','$data{'othernames'}',
'$data{'phoneday'}','$data{'categorycode'}','$data{'city'}','$data{'area'}','$data{'phone'}',
'$data{'borrowernotes'}','$data{'altphone'}','$data{'surname'}','$data{'initials'}',
'$data{'ethnicity'}','$data{'borrowernumber'}','$data{'streetaddress'}')";
'$data{'ethnicity'}','$data{'borrowernumber'}','$data{'streetaddress'}','$data{'branchcode'}')";
}
# ok if its an adult (type) it may have borrowers that depend on it as a guarantor
# so when we update information for an adult we should check for guarantees and update the relevant part
Expand Down
2 changes: 1 addition & 1 deletion koha-tmpl/intranet-tmpl/default/en/members/moremember.tmpl
Expand Up @@ -36,7 +36,7 @@
Area: <TMPL_VAR NAME="area"><BR>
Fee:$30/year, Paid<BR>
Joined: <TMPL_VAR NAME="dateenrolled">, Expires: <TMPL_VAR NAME="expiry"><BR>
Joining Branch: <TMPL_VAR NAME="homebranch"><P>
Joining Branch: <TMPL_VAR NAME="branchcode"><P>
<TMPL_IF NAME="printethnicityline">
Ethnicity: <TMPL_VAR NAME="ethnicity">, <TMPL_VAR NAME="ethnotes"><br>
</TMPL_IF>
Expand Down
2 changes: 1 addition & 1 deletion koha-tmpl/intranet-tmpl/default/en/newmember.tmpl
Expand Up @@ -82,7 +82,7 @@
<B>Joining Branch</B>
</td>
<td>
<TMPL_VAR Name="joinbranch">
<TMPL_VAR Name="branchcode">
</td>
</tr>
<tr valign=top bgcolor="<TMPL_VAR Name="main">" >
Expand Down

0 comments on commit 66ecfe5

Please sign in to comment.