From 00f3b3563b5b971ec342732b4e192ba7080a195c Mon Sep 17 00:00:00 2001 From: sanjeev Date: Mon, 29 Nov 2021 16:41:20 +0530 Subject: [PATCH] fixes : ps --- api/application/controllers/PD_Controller.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/api/application/controllers/PD_Controller.php b/api/application/controllers/PD_Controller.php index 7b8d1b05..0c004bd3 100644 --- a/api/application/controllers/PD_Controller.php +++ b/api/application/controllers/PD_Controller.php @@ -1635,9 +1635,9 @@ public function assignPDTempalate($data) $lender_id = $this->PD_Model->selectCustomRecords($fields,$where_condition_array,PDTRIGGER); $smc_lender_id = ENVIRONMENT == 'production' ? 7 : 35; //SMC lender id MWISE in live and demo - if($smc_lender_id != $lender_id[0]['fk_lender_id']){ - $records['pd_status'] = isset($records['pd_status']) ? $records['pd_status'] : ALLOCATED ; - } + // if($smc_lender_id != $lender_id[0]['fk_lender_id']){ + // $records['pd_status'] = isset($records['pd_status']) ? $records['pd_status'] : ALLOCATED ; + // } // IF Condition - using PDID get the lender and mapped with SMC_lender_id macthed means Vendor status dynamically assigned if($smc_lender_id == $lender_id[0]['fk_lender_id'] && isset($records['pd_agency_id']) && $records['pd_agency_id'] != null){ @@ -1645,6 +1645,7 @@ public function assignPDTempalate($data) } else if(isset($records['pd_status']) && ($records['pd_status'] == ALLOCATED_TO_FIA )) { + $records['pd_status'] = isset($records['pd_status']) ? $records['pd_status'] : ALLOCATED ; $records['vendor_status'] = TRIGGERED; }