ADDRESS API
This commit is contained in:
parent
d8e08a29b0
commit
ac97a11026
@ -193,6 +193,7 @@ $route['getAllPersonsName'] = 'PD_Controller/getAllPersonsName';
|
||||
$route['getAssetsWithLoanFromBusiness'] = 'PD_Controller/getAssetsWithLoanFromBusiness';
|
||||
$route['getListOfCities'] = 'PD_Controller/getListOfCities';
|
||||
$route['savePDPhotos'] = 'PD_Controller/savePDPhotos';
|
||||
$route['getPDAddress'] = 'PD_Controller/getPDAddress';
|
||||
// $route['savePDFormDetailsJSON'] = 'PD_Controller/savePDFormDetailsJSON';
|
||||
// $route['getPDFormDetailsJSON'] = 'PD_Controller/getPDFormDetailsJSON';
|
||||
|
||||
|
||||
@ -4516,6 +4516,16 @@ class PD_Controller extends REST_Controller {
|
||||
|
||||
}
|
||||
|
||||
public function getPDAddress_post()
|
||||
{
|
||||
$pdid = $this->post('pd_id');
|
||||
$address = $this->PD_Model->getPDAddress($pdid);
|
||||
$data['dataStatus'] = true;
|
||||
$data['status'] = REST_Controller::HTTP_OK;
|
||||
$data['records'] = $address;
|
||||
$this->response($data,REST_Controller::HTTP_OK);
|
||||
|
||||
}
|
||||
|
||||
public function getEndUseOfLoan_post()
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user