@hiennc24/constant 1.3.49 → 1.3.51
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
|
+
PAYSLIP_REPOSITORY_NAME: string;
|
|
326
|
+
PAYSLIP_COLLECTION_NAME: string;
|
|
325
327
|
PAYROLL_REPOSITORY_NAME: string;
|
|
326
328
|
PAYROLL_COLLECTION_NAME: string;
|
|
327
329
|
PAYROLL_DETAIL_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
|
+
// Payslips
|
|
418
|
+
PAYSLIP_REPOSITORY_NAME: "paysLip",
|
|
419
|
+
PAYSLIP_COLLECTION_NAME: "payslips",
|
|
417
420
|
// Payroll
|
|
418
421
|
PAYROLL_REPOSITORY_NAME: "payroll",
|
|
419
422
|
PAYROLL_COLLECTION_NAME: "payrolls",
|
|
@@ -973,6 +973,7 @@
|
|
|
973
973
|
"ACTION_GET_LIST": "getList",
|
|
974
974
|
"ACTION_GET_DETAIL": "getDetail",
|
|
975
975
|
"ACTION_DELETE_MANY": "deleteMany",
|
|
976
|
+
"ACTION_UPDATE_STATUS": "updateStatus",
|
|
976
977
|
"ACTION_GET_DETAIL_EMPLOYEES": "getDetailEmployees",
|
|
977
978
|
"ACTION_UPDATE_MANY_EMPLOYEES": "updateManyEmployees",
|
|
978
979
|
"ACTION_INSERT_MANY_EMPLOYEES": "insertManyEmployees",
|
|
@@ -987,6 +988,17 @@
|
|
|
987
988
|
"ACTION_CREATE": "create",
|
|
988
989
|
"ACTION_UPDATE": "update"
|
|
989
990
|
},
|
|
991
|
+
"API_HCM_PAYSLIPS": {
|
|
992
|
+
"NAME": "api-hcm.payslips",
|
|
993
|
+
"ACTION_CREATE": "create",
|
|
994
|
+
"ACTION_UPDATE": "update",
|
|
995
|
+
"ACTION_GET_LIST": "getList",
|
|
996
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
997
|
+
"ACTION_DELETE_MANY": "deleteMany",
|
|
998
|
+
"ACTION_SEND_PAYSLIPS": "sendPayslips",
|
|
999
|
+
"ACTION_UPDATE_STATUS": "updateStatus",
|
|
1000
|
+
"ACTION_GET_PAYROLL_DATA_BY_PERIOD": "getPayrollDataByPeriod"
|
|
1001
|
+
},
|
|
990
1002
|
"API_HCM_PAYROLL_SETTINGS": {
|
|
991
1003
|
"NAME": "api-hcm.payrollSettings",
|
|
992
1004
|
"ACTION_GET": "get",
|