diff --git a/app/Controllers/EmployeeServiceController.php b/app/Controllers/EmployeeServiceController.php
index 4b71694c..690e9c08 100755
--- a/app/Controllers/EmployeeServiceController.php
+++ b/app/Controllers/EmployeeServiceController.php
@@ -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'] = "
Inception Data Count:
{$inception_data_count}
@@ -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.";
}
}
diff --git a/app/Views/employee_upload.php b/app/Views/employee_upload.php
index 8a4e1c13..94e6b240 100755
--- a/app/Views/employee_upload.php
+++ b/app/Views/employee_upload.php
@@ -548,14 +548,14 @@ function fetchFileError(file_id) {
"Rule conflict: Twofold relationship found within family " +
err_count + "";
break;
- case 14:
+ case 100:
hasError14 = true;
error_code = 14;
file_error_html +=
"This inception row was not found in the member data list. " +
err_count + "";
break;
- case 15:
+ case 101:
hasError15 = true;
error_code = 15;
file_error_html +=