LENDER BRANCH 2

This commit is contained in:
velz 2018-12-13 17:37:33 +05:30
parent 97169718fd
commit 1b4632f991
2 changed files with 26 additions and 0 deletions

View File

@ -135,6 +135,7 @@ $route['getEntityRegionCityMap'] = 'Entity_Management_Controller/getEntityRegion
$route['saveVendorCityMapping'] = 'Entity_Management_Controller/saveVendorCityMapping';
$route['getVendorCityMap'] = 'Entity_Management_Controller/getVendorCityMap';
$route['saveLenderBranches'] = 'Entity_Management_Controller/saveLenderBranches';
$route['listLenderBranches'] = 'Entity_Management_Controller/listLenderBranches';
//PD RELATED
$route['triggerNewPD'] = 'PD_Controller/triggerNewPD';

View File

@ -561,4 +561,29 @@ class Entity_Management_Controller extends REST_Controller {
}
public function listLenderBranches_get()
{
$entity_id = $this->get('entityid');
$fields = array('entity_lender_branch_id', 'branch_name');
$where_condition_array = array('fk_entity_id' => $entity_id,'isactive'=>1);
$records = $this->Entity_Management_Model->selectCustomRecords($fields,$where_condition_array,ENTITYLENDERBRANCH);
if(count($records))
{
$data['dataStatus'] = true;
$data['status'] = REST_Controller::HTTP_OK;
$data['records'] = $records;
$this->response($data,REST_Controller::HTTP_OK);
}
else
{
$data['dataStatus'] = false;
$data['status'] = REST_Controller::HTTP_NO_CONTENT;
$data['msg'] = "No Data Available";
$this->response($data,REST_Controller::HTTP_OK);
}
}
}