ui ส่งหนังสือเวียน (ยังไม่ได้ปรับ api จาก step3)

This commit is contained in:
setthawutttty 2023-09-01 11:51:12 +07:00
parent a86743308f
commit 28365eeed0
4 changed files with 774 additions and 2 deletions

View file

@ -7,6 +7,7 @@ const reportRetire = `${env.API_REPORT2_URI}/report/retire`;
const reportProbation = `${env.API_REPORT2_URI}/report/probation`;
const reportResign = `${env.API_REPORT2_URI}/report/resign/33`;
const reportTransfer = `${env.API_REPORT2_URI}/report/transfer`;
const reportDeceased = `${env.API_REPORT2_URI}/report/deceased`;
export default {
reportOrderCover: (fileType: string, id: string, commandCode: string) =>
@ -34,5 +35,12 @@ export default {
reportSurvey:(type:string, id:string) => `${reportProbation}/19/${type}/${id}`,
//filetransfer
reportTransferFile:(no:number,type:string,id:string) => `${reportTransfer}/${no}/${type}/${id}`
reportTransferFile:(no:number,type:string,id:string) => `${reportTransfer}/${no}/${type}/${id}`,
DeceasedReport:(type:string,id:string) => `${reportDeceased}/36/${type}/${id}`
};