FIX_ALL_EVENT_EROR_ISSUE

This commit is contained in:
VENKATESHWARAN 2025-11-13 16:27:27 +05:30
parent f6c40db6b5
commit b24dd84026
2 changed files with 4 additions and 4 deletions

View File

@ -2471,7 +2471,7 @@ class EmployeeServiceController extends AdminController
$member_data_count = count($member_data);
if ($inception_data_count !== $member_data_count) {
$result['error_summary'][] = 15;
$result['error_summary'][] = 101;
$result['error_message'] = "
<strong>Inception Data Count:</strong>
<span class='badge badge-danger'>{$inception_data_count}</span>&nbsp;&nbsp;
@ -2504,7 +2504,7 @@ class EmployeeServiceController extends AdminController
}
if (!$match_found) {
array_push($result['error_summary'], 14);
array_push($result['error_summary'], 100);
$result['error_data'][$inception_key]['sno']['error'][] = "This inception row was not found in the member data list.";
}
}

View File

@ -548,14 +548,14 @@ function fetchFileError(file_id) {
"<strong>Rule conflict: Twofold relationship found within family</strong> <span class='badge badge-danger float-right'>" +
err_count + "</span>";
break;
case 14:
case 100:
hasError14 = true;
error_code = 14;
file_error_html +=
"<strong>This inception row was not found in the member data list.</strong> <span class='badge badge-danger float-right'>" +
err_count + "</span>";
break;
case 15:
case 101:
hasError15 = true;
error_code = 15;
file_error_html +=