Merge branch 'dev' of bitbucket.org:jubilian/nhance into dev

This commit is contained in:
VENKATESHWARAN 2024-11-27 13:44:31 +05:30
commit b0a869f1fc

View File

@ -1696,6 +1696,7 @@ class PolicyTransactionController extends BaseController
public function validateInsurerStatement($params) public function validateInsurerStatement($params)
{ {
helper('excel_util_helper');
//get file info //get file info
$file_id = $params['file_id']; $file_id = $params['file_id'];
$file = $this->insurerStatements->find($file_id); $file = $this->insurerStatements->find($file_id);
@ -1748,6 +1749,12 @@ class PolicyTransactionController extends BaseController
// if all good return true, otherwise return false with messssage // if all good return true, otherwise return false with messssage
foreach ($excel_data as $excel_key => $excel_row) foreach ($excel_data as $excel_key => $excel_row)
{ {
$is_row_empty = check_row_is_empty_or_null($excel_row);
if($is_row_empty)
{
continue;
}
$is_source_found = 0; $is_source_found = 0;
$policy_start_date = preg_replace('/^\p{Z}+|\p{Z}+$/u', '', $excel_row[4]);//policy_start_date from excel $policy_start_date = preg_replace('/^\p{Z}+|\p{Z}+$/u', '', $excel_row[4]);//policy_start_date from excel
$policy_end_date = preg_replace('/^\p{Z}+|\p{Z}+$/u', '', $excel_row[5]);//policy_end_date from excel $policy_end_date = preg_replace('/^\p{Z}+|\p{Z}+$/u', '', $excel_row[5]);//policy_end_date from excel