loan_reference

This commit is contained in:
CHIEFSOFT\ameye
2024-09-03 18:21:08 -04:00
parent 508310993d
commit 4cd1182859
+10 -1
View File
@@ -25,7 +25,7 @@ class AirFlow extends BaseController
while ($row = $query->getUnbufferedRow()) {
log_message('critical', "AirFlow::processLoadData ********* ALL 0000 ". $row->customer_uid );
$this->parseLoadDetail($row->uid,$row->customer_uid,$row->loan_detail);
// echo $row->customer_uid;
// echo $row->name;
@@ -45,4 +45,13 @@ class AirFlow extends BaseController
return 0;
}
private function parseLoadDetail($uid,$customer_uid,$loan_detail){
$loan_detail_array = unserialize($loan_detail);
log_message('critical', "AirFlow::processLoadData*parseLoadDetail ***loan_reference*** ". $loan_detail_array["loan_reference"] );
return 0;
}
}