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);
|
||||
|
||||
@@ -15,6 +15,13 @@ class Loan extends BaseController
|
||||
$this->request = \Config\Services::request();
|
||||
}
|
||||
|
||||
|
||||
public function loanProcess(){
|
||||
$data = $this->request->getPost();
|
||||
|
||||
|
||||
return $this->respond($data, 200);
|
||||
}
|
||||
public function loanApply(){
|
||||
/*
|
||||
uid uuid,
|
||||
|
||||
Reference in New Issue
Block a user