@hiennc24/constant 1.3.40 → 1.3.42
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.
|
@@ -310,8 +310,8 @@ declare const COLLECTIONS: {
|
|
|
310
310
|
PAYROLL_TEMPLATE_EMPLOYEE_COLLECTION_NAME: string;
|
|
311
311
|
PAYCHECK_SETTING_REPOSITORY_NAME: string;
|
|
312
312
|
PAYCHECK_SETTING_COLLECTION_NAME: string;
|
|
313
|
-
|
|
314
|
-
|
|
313
|
+
OLE_DETAIL_REPOSITORY_NAME: string;
|
|
314
|
+
OLE_DETAIL_COLLECTION_NAME: string;
|
|
315
315
|
OLE_REPOSITORY_NAME: string;
|
|
316
316
|
OLE_COLLECTION_NAME: string;
|
|
317
317
|
SALARY_COMPONENT_REPOSITORY_NAME: string;
|
|
@@ -334,10 +334,10 @@ declare const COLLECTIONS: {
|
|
|
334
334
|
PAYROLL_DATA_KPI_COLLECTION_NAME: string;
|
|
335
335
|
PAYROLL_DATA_KPI_DETAIL_REPOSITORY_NAME: string;
|
|
336
336
|
PAYROLL_DATA_KPI_DETAIL_COLLECTION_NAME: string;
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
337
|
+
PAYROLL_DATA_TIMESHEET_REPOSITORY_NAME: string;
|
|
338
|
+
PAYROLL_DATA_TIMESHEET_COLLECTION_NAME: string;
|
|
339
|
+
PAYROLL_DATA_TIMESHEET_DETAIL_REPOSITORY_NAME: string;
|
|
340
|
+
PAYROLL_DATA_TIMESHEET_DETAIL_COLLECTION_NAME: string;
|
|
341
341
|
BONUS_ITEM_REPOSITORY_NAME: string;
|
|
342
342
|
BONUS_ITEM_COLLECTION_NAME: string;
|
|
343
343
|
BONUS_RANGE_REPOSITORY_NAME: string;
|
|
@@ -400,8 +400,8 @@ const COLLECTIONS = {
|
|
|
400
400
|
// Paycheck
|
|
401
401
|
PAYCHECK_SETTING_REPOSITORY_NAME: "paycheckSetting",
|
|
402
402
|
PAYCHECK_SETTING_COLLECTION_NAME: "paycheck_settings",
|
|
403
|
-
|
|
404
|
-
|
|
403
|
+
OLE_DETAIL_REPOSITORY_NAME: "oleDetail",
|
|
404
|
+
OLE_DETAIL_COLLECTION_NAME: "ole_details",
|
|
405
405
|
OLE_REPOSITORY_NAME: "ole",
|
|
406
406
|
OLE_COLLECTION_NAME: "oles",
|
|
407
407
|
// Salary Component
|
|
@@ -428,10 +428,10 @@ const COLLECTIONS = {
|
|
|
428
428
|
PAYROLL_DATA_KPI_COLLECTION_NAME: "payroll_data_kpis",
|
|
429
429
|
PAYROLL_DATA_KPI_DETAIL_REPOSITORY_NAME: "payrollDataKpiDetail",
|
|
430
430
|
PAYROLL_DATA_KPI_DETAIL_COLLECTION_NAME: "payroll_data_kpi_details",
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
431
|
+
PAYROLL_DATA_TIMESHEET_REPOSITORY_NAME: "payrollDataTimesheet",
|
|
432
|
+
PAYROLL_DATA_TIMESHEET_COLLECTION_NAME: "payroll_data_timesheets",
|
|
433
|
+
PAYROLL_DATA_TIMESHEET_DETAIL_REPOSITORY_NAME: "payrollDataTimesheetDetail",
|
|
434
|
+
PAYROLL_DATA_TIMESHEET_DETAIL_COLLECTION_NAME: "payroll_data_timesheet_details",
|
|
435
435
|
// Bonus Mechanism
|
|
436
436
|
BONUS_ITEM_REPOSITORY_NAME: "bonusItem",
|
|
437
437
|
BONUS_ITEM_COLLECTION_NAME: "bonus_items",
|
|
@@ -932,6 +932,36 @@
|
|
|
932
932
|
"ACTION_DELETE_MANY_DETAIL": "deleteManyDetail",
|
|
933
933
|
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured"
|
|
934
934
|
},
|
|
935
|
+
"API_HCM_PAYROLL_DATA_KPI": {
|
|
936
|
+
"NAME": "api-hcm.payroll-data-kpi",
|
|
937
|
+
"ACTION_CREATE": "create",
|
|
938
|
+
"ACTION_UPDATE": "update",
|
|
939
|
+
"ACTION_GET_LIST": "getList",
|
|
940
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
941
|
+
"ACTION_DELETE_MANY": "deleteMany",
|
|
942
|
+
"ACTION_UPDATE_STATUS": "updateStatus",
|
|
943
|
+
"ACTION_UPDATE_DETAIL": "updateDetail",
|
|
944
|
+
"ACTION_GET_LIST_DETAIL": "getListDetail",
|
|
945
|
+
"ACTION_INSERT_MANY_DETAIL": "insertManyDetail",
|
|
946
|
+
"ACTION_UPDATE_MANY_DETAIL": "updateManyDetail",
|
|
947
|
+
"ACTION_DELETE_MANY_DETAIL": "deleteManyDetail",
|
|
948
|
+
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured"
|
|
949
|
+
},
|
|
950
|
+
"API_HCM_PAYROLL_DATA_TIMESHEET": {
|
|
951
|
+
"NAME": "api-hcm.payroll-data-timesheet",
|
|
952
|
+
"ACTION_CREATE": "create",
|
|
953
|
+
"ACTION_UPDATE": "update",
|
|
954
|
+
"ACTION_GET_LIST": "getList",
|
|
955
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
956
|
+
"ACTION_DELETE_MANY": "deleteMany",
|
|
957
|
+
"ACTION_UPDATE_STATUS": "updateStatus",
|
|
958
|
+
"ACTION_UPDATE_DETAIL": "updateDetail",
|
|
959
|
+
"ACTION_GET_LIST_DETAIL": "getListDetail",
|
|
960
|
+
"ACTION_INSERT_MANY_DETAIL": "insertManyDetail",
|
|
961
|
+
"ACTION_UPDATE_MANY_DETAIL": "updateManyDetail",
|
|
962
|
+
"ACTION_DELETE_MANY_DETAIL": "deleteManyDetail",
|
|
963
|
+
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured"
|
|
964
|
+
},
|
|
935
965
|
"API_HCM_PAYROLL": {
|
|
936
966
|
"NAME": "api-hcm.payrolls",
|
|
937
967
|
"ACTION_GET_LIST": "getList",
|
|
@@ -953,8 +983,8 @@
|
|
|
953
983
|
"ACTION_GET": "get",
|
|
954
984
|
"ACTION_UPDATE": "update"
|
|
955
985
|
},
|
|
956
|
-
"
|
|
957
|
-
"NAME": "api-hcm.
|
|
986
|
+
"API_HCM_OLE_DETAILS": {
|
|
987
|
+
"NAME": "api-hcm.oleDetails",
|
|
958
988
|
"ACTION_GET_DETAIL": "getDetail",
|
|
959
989
|
"ACTION_GET_PAGE": "getPage",
|
|
960
990
|
"ACTION_CREATE": "create",
|
|
@@ -963,9 +993,9 @@
|
|
|
963
993
|
"ACTION_GENERATE": "generate",
|
|
964
994
|
"ACTION_APPROVE": "approve",
|
|
965
995
|
"ACTION_SEND_OLE": "sendOle",
|
|
966
|
-
"
|
|
967
|
-
"
|
|
968
|
-
"
|
|
996
|
+
"ACTION_GET_OLE_DETAIL_CONFIRM": "getOleDetailConfirm",
|
|
997
|
+
"ACTION_CONFIRM_OLE_DETAIL": "confirmOleDetail",
|
|
998
|
+
"ACTION_CONFIRM_OLE_DETAIL_WORKSPACE": "confirmOleDetailWorkspace",
|
|
969
999
|
"ACTION_STATISTICS": "statistics",
|
|
970
1000
|
"ACTION_DOWNLOAD": "download",
|
|
971
1001
|
"ACTION_CREATE_MANY": "createMany"
|