เพิ่มวันหยุดในปฏิทิน

This commit is contained in:
AnandaTon 2024-01-04 15:18:18 +07:00
parent 346ba79606
commit 23cb1649f5
2 changed files with 312 additions and 340 deletions

View file

@ -2,6 +2,7 @@ import env from "../index"
const retirementResign = `${env.API_URI}/retirement`
const leave = `${env.API_URI}/leave`
const holiday = `${env.API_URI}/metadata/holiday/`
export default {
listUser: () => `${retirementResign}/resign/user`,
@ -24,4 +25,6 @@ export default {
leaveCheck: () => `${leave}/user/check`,
leaveReport: (id: string) => `${leave}/report/${id}`,
leaveSendReport: () => `${leave}/report-template/docx`,
listHolidayHistoryYearMonth: (year: number, month: number) => `${holiday}${year}/${month}`,
}