diff --git a/app/Controllers/EmployeeServiceController.php b/app/Controllers/EmployeeServiceController.php
index faf98a6a..af2fdd96 100755
--- a/app/Controllers/EmployeeServiceController.php
+++ b/app/Controllers/EmployeeServiceController.php
@@ -1520,6 +1520,8 @@ class EmployeeServiceController extends AdminController
if(count($employee_data_group_by_family ?? []) && isset($params['batch_file_id'])){
$r = Jobs::addJob(['job_name' => 'updateEmployeeDataFromTpa','payload' => ['file_id' => $file_id, 'batch_file_id' => $params['batch_file_id']]]);
+ $r = Jobs::addJob(['job_name' => 'reconTpaApiDataWithEmployeepolicies','payload' => ['file_id' => $params['batch_file_id']]]);
+ $r = Jobs::addJob(['job_name' => 'initializeDeletionProcessForTpaApiData','payload' => ['file_id' => $params['batch_file_id']]]);
$this->myLogger->logme("info", 'Batch file id {batch_file_id} processed successfully', ['batch_file_id' => $params['batch_file_id']]);
}
diff --git a/app/Helpers/excel_util_helper.php b/app/Helpers/excel_util_helper.php
index 788ddc20..0c99c9ef 100755
--- a/app/Helpers/excel_util_helper.php
+++ b/app/Helpers/excel_util_helper.php
@@ -3061,6 +3061,11 @@ if (!function_exists('validate_date_value')) {
if (!function_exists('validate_mobile_value')) {
function validate_mobile_value($value)
{
+ if(empty($value))
+ {
+ return ['status' => true, 'error' => null];
+ }
+
if (preg_match('/^[0-9]{10}$/', $value)) {
return ['status' => true, 'error' => null];
}
diff --git a/app/Views/errors/403.php b/app/Views/errors/403.php
index 79344fe8..50d13e13 100755
--- a/app/Views/errors/403.php
+++ b/app/Views/errors/403.php
@@ -113,7 +113,7 @@
-
/assets/images/errors/403_illustration.jpeg" alt="403 access denied">
+
/assets/images/errors/403_illustration.png" alt="403 access denied">
ACCESS DENIED
= isset($message) && !empty($message) ? $message : "You don't have permission to access this page." ?>
diff --git a/public/assets/images/errors/403_illustration.png b/public/assets/images/errors/403_illustration.png
new file mode 100644
index 00000000..1c277537
Binary files /dev/null and b/public/assets/images/errors/403_illustration.png differ