diff --git a/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue b/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue index e29279039..5dde4ff45 100644 --- a/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue +++ b/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue @@ -226,13 +226,7 @@ function onclickEdit(id: string) { function onDownloadFile(id: string) { showLoader(); http - .get( - config.API.file( - "ระบบทะเบียนประวัติ", - "เอกสารหลักฐานคำร้องขอแก้ไขข้อมูล", - id - ) - ) + .get(config.API.file("IDP", "ยื่นคำร้องขอเพิ่มข้อมูลการพัฒนารายบุคคล", id)) .then(async (res) => { if (res.data.length !== 0) { await downloadUrl(id, res.data[0].fileName); @@ -255,8 +249,8 @@ async function downloadUrl(id: string, fileName: string) { await http .get( config.API.fileByFile( - "ระบบทะเบียนประวัติ", - "เอกสารหลักฐานคำร้องขอแก้ไขข้อมูล", + "IDP", + "ยื่นคำร้องขอเพิ่มข้อมูลการพัฒนารายบุคคล", id, fileName )