From 5899d844a5d144165b4a5b7b3cfc04dffd05dc13 Mon Sep 17 00:00:00 2001 From: sanjeev Date: Mon, 29 Nov 2021 16:37:55 +0530 Subject: [PATCH] allocated status issues fixed : ps --- api/application/controllers/PD_Controller.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/application/controllers/PD_Controller.php b/api/application/controllers/PD_Controller.php index 40051d70..7b8d1b05 100644 --- a/api/application/controllers/PD_Controller.php +++ b/api/application/controllers/PD_Controller.php @@ -1635,7 +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 - $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){