Fairoj : TurnOverValidated section report issue fixed
This commit is contained in:
parent
a72f941b89
commit
796f7a7255
@ -2162,7 +2162,7 @@ if($total_no_of_business > 0) {
|
||||
|
||||
|
||||
// ############### this section only for CLIX HOUSING FINANCE LENDER
|
||||
if(strtoupper($businessFinancialRow['is_turnover_validated']) == 'YES')
|
||||
if(isset($businessFinancialRow['is_turnover_validated']) && strtoupper($businessFinancialRow['is_turnover_validated']) == 'YES')
|
||||
{
|
||||
$bindBusinessFinancial['turnover_statements']=FINANCIALFORM::getBusinessCustomerFinancialDetails($businessFinancialRow['turnover_values']);
|
||||
$bindBusinessFinancial['customer_statements_header']=FINANCIALFORM::getBusinessCustomerHeader($businessFinancialRow['turnover_values']);
|
||||
@ -2363,8 +2363,9 @@ if($total_no_of_business > 0) {
|
||||
|
||||
}//else { echo "<p> As per Loan Applicant(s) met, the financials figures were not provided. </p>"; }
|
||||
|
||||
// ####################### THIS SECTION ONLY FOR CLIX HOUSING FINANCE LENDER ##########################-->
|
||||
// ####################### THIS SECTION ONLY FOR CLIX HOUSING FINANCE LENDER ##########################-->
|
||||
|
||||
if(isset($iterateFinance['turnover_statements'])) {
|
||||
foreach($iterateFinance['turnover_statements'] as $turnover){
|
||||
if(!strcasecmp($turnover['estimate_net_margin_availablity'],'yes')){
|
||||
?>
|
||||
@ -2412,9 +2413,11 @@ if($total_no_of_business > 0) {
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<?php }
|
||||
echo '<br>Turnover and Netprofit was '.$iterateFinance['how_turnover_validated']
|
||||
|
||||
<?php }
|
||||
}
|
||||
if(isset($iterateFinance['how_turnover_validated']) && $iterateFinance['how_turnover_validated'] != null){
|
||||
echo '<br>Turnover and Netprofit was '.$iterateFinance['how_turnover_validated'];
|
||||
}
|
||||
?>
|
||||
<!-- ####################### THIS SECTION ONLY FOR CLIX HOUSING FINANCE LENDER ##########################-->
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user