loan process data
This commit is contained in:
@@ -47,7 +47,10 @@ class Employers extends BaseController
|
||||
|
||||
if ($data['application_uid'] != '') {
|
||||
|
||||
$findEmp ="SELECT c.firstname,c.lastname,a.uid AS application_uid, a.* from applications a LEFT JOIN customers c ON c.uid =a.customer_uid WHERE a.status =2 AND a.uid = '".trim($data['application_uid'])."'";
|
||||
$findEmp ="SELECT c.firstname,c.lastname,a.uid AS application_uid, a.*
|
||||
FROM applications a
|
||||
LEFT JOIN customers c ON c.uid =a.customer_uid
|
||||
WHERE a.status =2 AND a.uid = '".trim($data['application_uid'])."'";
|
||||
// log_message('error', "findEmp---=>" . $findEmp);
|
||||
|
||||
$query = $this->db->query($findEmp);
|
||||
|
||||
Reference in New Issue
Block a user