memberentryC.tmpl:add test to modify link name
memberentry.pl:add test to return default value for select_city
This commit is contained in:
parent
139ba12db3
commit
f96ee8e2c6
2 changed files with 16 additions and 11 deletions
|
@ -180,10 +180,14 @@
|
|||
<input style="text-transform:uppercase;" type="text" name="othernames" size="20" value="<!-- TMPL_VAR NAME="othernames" -->" >
|
||||
</p>
|
||||
|
||||
<!-- TMPL_UNLESS name="guarantorid"-->
|
||||
<!-- TMPL_UNLESS NAME="add"-->
|
||||
<p><a href="javascript:Dopopguarantor('guarantor_search.pl');">Modify guarantor</a></p>
|
||||
<!-- /TMPL_UNLESS -->
|
||||
<!-- TMPL_IF NAME="add" -->
|
||||
<!-- TMPL_UNLESS NAME="guarantorid"-->
|
||||
<p><a href="javascript:Dopopguarantor('guarantor_search.pl');">Find guarantor</a></p>
|
||||
<!-- /TMPL_UNLESS -->
|
||||
|
||||
<!-- /TMPL_IF -->
|
||||
</fieldset>
|
||||
<fieldset id="memberentry_identity">
|
||||
<legend>Borrower type</legend>
|
||||
|
|
|
@ -85,6 +85,7 @@ foreach (@field_check) {
|
|||
$template->param( "mandatory$_" => 1);
|
||||
}
|
||||
|
||||
$template->param("add"=>1) if ($op eq 'add');
|
||||
$template->param( "checked" => 1) if ($nodouble eq 1);
|
||||
|
||||
my $borrower_data=borrdata('',$borrowernumber);
|
||||
|
@ -94,7 +95,6 @@ if ($step eq 0){
|
|||
$data{$column}=$borrower_data->{$column};
|
||||
}
|
||||
}
|
||||
|
||||
if ($op eq 'add' or $op eq 'modify') {
|
||||
my @names=$input->param;
|
||||
foreach my $key (@names){
|
||||
|
@ -134,8 +134,6 @@ if ($category_type eq 'C' and $guarantorid ne '' ){
|
|||
$data{'fax'}=$guarantordata->{'fax'};
|
||||
$data{'email'}=$guarantordata->{'email'};
|
||||
$data{'emailpro'}=$guarantordata->{'emailpro'};
|
||||
|
||||
$default_city=getidcity($data{'city'});
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -158,6 +156,7 @@ if ($category_type eq 'C' and $guarantorid ne '' ){
|
|||
$nok = 1;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
# STEP 2
|
||||
if ($step eq 2) {
|
||||
|
@ -285,7 +284,9 @@ if ($delete){
|
|||
-default=>$default_category,
|
||||
-labels=>$labels);
|
||||
#test in city
|
||||
if ($op eq 'modify' and $select_city eq '' ){
|
||||
$select_city=getidcity($data{'city'}) if ($guarantorid ne '');
|
||||
($default_city=$select_city) if ($step eq 0);
|
||||
if ($select_city eq '' ){
|
||||
my $selectcity=&getidcity($data{'city'});
|
||||
$default_city=$selectcity;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue