@hiennc24/constant 1.3.53 → 1.3.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -322,6 +322,8 @@ declare const COLLECTIONS: {
|
|
|
322
322
|
SETTING_WORKING_DAY_COLLECTION_NAME: string;
|
|
323
323
|
SETTING_HOLIDAY_REPOSITORY_NAME: string;
|
|
324
324
|
SETTING_HOLIDAY_COLLECTION_NAME: string;
|
|
325
|
+
SETTING_OLE_TARGET_REPOSITORY_NAME: string;
|
|
326
|
+
SETTING_OLE_TARGET_COLLECTION_NAME: string;
|
|
325
327
|
PAYSLIP_REPOSITORY_NAME: string;
|
|
326
328
|
PAYSLIP_COLLECTION_NAME: string;
|
|
327
329
|
PAYROLL_REPOSITORY_NAME: string;
|
|
@@ -414,6 +414,9 @@ const COLLECTIONS = {
|
|
|
414
414
|
SETTING_WORKING_DAY_COLLECTION_NAME: "setting_working_days",
|
|
415
415
|
SETTING_HOLIDAY_REPOSITORY_NAME: "settingHoliday",
|
|
416
416
|
SETTING_HOLIDAY_COLLECTION_NAME: "setting_holidays",
|
|
417
|
+
// Salary Component
|
|
418
|
+
SETTING_OLE_TARGET_REPOSITORY_NAME: "settingOleTarget",
|
|
419
|
+
SETTING_OLE_TARGET_COLLECTION_NAME: "setting_ole_targets",
|
|
417
420
|
// Payslips
|
|
418
421
|
PAYSLIP_REPOSITORY_NAME: "paysLip",
|
|
419
422
|
PAYSLIP_COLLECTION_NAME: "payslips",
|
|
@@ -934,7 +934,7 @@
|
|
|
934
934
|
"ACTION_UPDATE_MANY_DETAIL": "updateManyDetail",
|
|
935
935
|
"ACTION_DELETE_MANY_DETAIL": "deleteManyDetail",
|
|
936
936
|
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured",
|
|
937
|
-
"ACTION_CALCULATE_TOTAL_ADVANCE_AMOUNT_FOR_EMPLOYEES": "
|
|
937
|
+
"ACTION_CALCULATE_TOTAL_ADVANCE_AMOUNT_FOR_EMPLOYEES": "calculateTotalAdvancesAmountForEmployees"
|
|
938
938
|
},
|
|
939
939
|
"API_HCM_PAYROLL_DATA_KPI": {
|
|
940
940
|
"NAME": "api-hcm.payroll-data-kpi",
|
|
@@ -949,7 +949,8 @@
|
|
|
949
949
|
"ACTION_INSERT_MANY_DETAIL": "insertManyDetail",
|
|
950
950
|
"ACTION_UPDATE_MANY_DETAIL": "updateManyDetail",
|
|
951
951
|
"ACTION_DELETE_MANY_DETAIL": "deleteManyDetail",
|
|
952
|
-
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured"
|
|
952
|
+
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured",
|
|
953
|
+
"ACTION_CALCULATE_TOTAL_OLE_AMOUNT_FOR_EMPLOYEES": "calculateTotalOlesAmountForEmployees"
|
|
953
954
|
},
|
|
954
955
|
"API_HCM_PAYROLL_DATA_TIMESHEET": {
|
|
955
956
|
"NAME": "api-hcm.payroll-data-timesheet",
|
|
@@ -964,7 +965,8 @@
|
|
|
964
965
|
"ACTION_INSERT_MANY_DETAIL": "insertManyDetail",
|
|
965
966
|
"ACTION_UPDATE_MANY_DETAIL": "updateManyDetail",
|
|
966
967
|
"ACTION_DELETE_MANY_DETAIL": "deleteManyDetail",
|
|
967
|
-
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured"
|
|
968
|
+
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured",
|
|
969
|
+
"ACTION_CALCULATE_TOTAL_TIMESHEET_AMOUNT_FOR_EMPLOYEES": "calculateTotalTimesheetsAmountForEmployees"
|
|
968
970
|
},
|
|
969
971
|
"API_HCM_PAYROLL": {
|
|
970
972
|
"NAME": "api-hcm.payrolls",
|
|
@@ -1050,6 +1052,14 @@
|
|
|
1050
1052
|
"ACTION_UPDATE": "update",
|
|
1051
1053
|
"ACTION_GET_PARAMS": "getParams"
|
|
1052
1054
|
},
|
|
1055
|
+
"API_HCM_SETTING_OLE_TARGETS": {
|
|
1056
|
+
"NAME": "api-hcm.setting-ole-targets",
|
|
1057
|
+
"ACTION_CREATE": "create",
|
|
1058
|
+
"ACTION_UPDATE": "update",
|
|
1059
|
+
"ACTION_GET_PAGE": "getPage",
|
|
1060
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
1061
|
+
"ACTION_DELETE_MANY": "deleteMany"
|
|
1062
|
+
},
|
|
1053
1063
|
"API_HCM_SETTING_HOLIDAYS": {
|
|
1054
1064
|
"NAME": "api-hcm.setting-holidays",
|
|
1055
1065
|
"ACTION_GET_LIST": "getList",
|