From 62fb19c1e992290a21fdb539e5d5c140037c009a Mon Sep 17 00:00:00 2001 From: velz Date: Sat, 31 Jan 2026 11:56:12 +0530 Subject: [PATCH] FIX_ENROL_DATE_MISSING_ISSUE --- app/Controllers/EmployeeController.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Controllers/EmployeeController.php b/app/Controllers/EmployeeController.php index 936d914..0678394 100755 --- a/app/Controllers/EmployeeController.php +++ b/app/Controllers/EmployeeController.php @@ -181,7 +181,10 @@ class EmployeeController extends AdminController //handles employee & dependent bulk upload with events like inception,addition,deletion, correction and SI enhancements public function employeesUplodWithEvents($post_data = []) { - + if(empty($post_data)) + { + $post_data = $this->request->getPost(); + } // $empDataServiceController = new EmpDataServiceController(); // !dd($empDataServiceController->importInceptionUpdateTPAandUHID(['file_id' => 79]));