Merge branch 'develop' into warunee-dev

This commit is contained in:
Warunee Tamkoo 2023-08-15 18:13:23 +07:00
commit c61e0fe7be
17 changed files with 4065 additions and 274 deletions

View file

@ -108,26 +108,40 @@ export default {
// แต่งตั้ง-เลื่อน
placemenAppointment,
appointmentMain: () => `${placement}/appointment`,
appointmentByid: (id: string) => `${placement}/appointment/${id}`,
appointmentDelete: (id: string) => `${placement}/appointment/${id}`,
appointmentPosition: (id: string) => `${placement}/appointment/position/${id}`,
apppointmentReport: (id: string) => `${placement}/appointment/report/${id}`,
// ช่วยราชการ
placemenHelpGov,
officerMain: () => `${placement}/officer`,
officerDetail: (id:string) => `${placement}/officer/${id}`,
officerMainDelete: (id:string) => `${placement}/officer/${id}`,
officerDetail: (id: string) => `${placement}/officer/${id}`,
officerMainDelete: (id: string) => `${placement}/officer/${id}`,
officerMainReport: () => `${placement}/officer/report`,
officerMainEdit: (id:string) => `${placemenHelpGov}/${id}`,
// ส่งตัวกลับ
placemenRepatriation,
repatriationMain: () => `${placement}/repatriation`,
repatriationDetail: (id:string) => `${placement}/repatriation/${id}`,
repatriationMainDelete: (id:string) => `${placement}/repatriation/${id}`,
repatriationDetail: (id: string) => `${placement}/repatriation/${id}`,
repatriationMainDelete: (id: string) => `${placement}/repatriation/${id}`,
repatriationMainReport: () => `${placement}/repatriation/report`,
repatriationMainEdit: (id:string) => `${placemenRepatriation}/${id}`,
// ขอย้าย
placemenRelocation,
relocationMain: () => `${placement}/relocation`,
relocationDetail: (id:string) => `${placement}/relocation/${id}`,
relocationMainDelete: (id:string) => `${placement}/relocation/${id}`,
relocationMainReport: () => `${placement}/relocation/report`,
relocationMainPut: (id:string) => `${placement}/relocation/position/${id}`,
relocationMainEdit: (id:string) => `${placemenRelocation}/${id}`,
// อื่นๆ
placemenOther,
otherMain: () => `${placemenOther}`,
otherPosition: (id: string) => `${placemenOther}/position/${id}`,
otherReport: (id: string) => `${placemenOther}/report/${id}`,
otherByid: (id: string) => `${placemenOther}/${id}`,
};