|
Lines 191-196
elsif ( $action eq 'update' ) {
Link Here
|
| 191 |
CheckMandatoryFields( \%borrower_changes, $action ); |
191 |
CheckMandatoryFields( \%borrower_changes, $action ); |
| 192 |
my $invalidformfields = CheckForInvalidFields(\%borrower); |
192 |
my $invalidformfields = CheckForInvalidFields(\%borrower); |
| 193 |
|
193 |
|
|
|
194 |
use Data::Dumper;warn Dumper $borrower; |
| 195 |
%borrower = ( %$borrower, %borrower ); |
| 196 |
use Data::Dumper;warn Dumper \%borrower; |
| 197 |
|
| 194 |
if (@empty_mandatory_fields || @$invalidformfields) { |
198 |
if (@empty_mandatory_fields || @$invalidformfields) { |
| 195 |
$template->param( |
199 |
$template->param( |
| 196 |
empty_mandatory_fields => \@empty_mandatory_fields, |
200 |
empty_mandatory_fields => \@empty_mandatory_fields, |
| 197 |
- |
|
|