From a0faabac355c1210f42a3f10a5c2185fedd20444 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Wed, 9 Jul 2025 13:54:18 +0700 Subject: [PATCH] =?UTF-8?q?fix=20await=20=E0=B8=AA=E0=B9=88=E0=B8=87?= =?UTF-8?q?=E0=B8=88=E0=B8=B2=E0=B8=81=E0=B8=AB=E0=B8=99=E0=B9=89=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=A5=E0=B8=B0=E0=B9=80=E0=B8=AD?= =?UTF-8?q?=E0=B8=B5=E0=B8=A2=E0=B8=94=E0=B8=97=E0=B8=B0=E0=B9=80=E0=B8=9A?= =?UTF-8?q?=E0=B8=B5=E0=B8=A2=E0=B8=99=E0=B8=9B=E0=B8=A3=E0=B8=B0=E0=B8=A7?= =?UTF-8?q?=E0=B8=B1=E0=B8=95=E0=B8=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../04_registryPerson/views/detailView.vue | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/src/modules/04_registryPerson/views/detailView.vue b/src/modules/04_registryPerson/views/detailView.vue index 0d48df7f3..a8585fb26 100644 --- a/src/modules/04_registryPerson/views/detailView.vue +++ b/src/modules/04_registryPerson/views/detailView.vue @@ -375,7 +375,9 @@ async function fetchDataPersonal() { res.data.result.leaveReason !== null && res.data.result.leaveReason !== "" ) { - leaveReason.value = `(พ้นจากราชการ : ${storeRegistry.convertTypeRetired(res.data.result.leaveType)})`; + leaveReason.value = `(พ้นจากราชการ : ${storeRegistry.convertTypeRetired( + res.data.result.leaveType + )})`; } reasonStatus.value = reason.length > 0 ? true : false; } @@ -439,8 +441,8 @@ function helpPost() { await http .post(config.API.placemenHelpGov, formData) .then(async () => { - await router.push("/placement/help-government"); await success($q, "ดำเนินการสำเร็จ"); + router.push("/placement/help-government"); }) .catch((e) => { messageError($q, e); @@ -460,8 +462,8 @@ function repatriationPost() { await http .post(config.API.placemenRepatriation, formData) .then(async () => { - await router.push("/placement/repatriate"); await success($q, "ดำเนินการสำเร็จ"); + router.push("/placement/repatriate"); }) .catch((e) => { messageError($q, e); @@ -481,8 +483,8 @@ function appointPost() { await http .post(config.API.placemenAppointment, formData) .then(async () => { - await router.push("/placement/appoint-promote"); await success($q, "ดำเนินการสำเร็จ"); + router.push("/placement/appoint-promote"); }) .catch((e) => { messageError($q, e); @@ -516,14 +518,14 @@ function outPost() { await http .post(config.API.retirementOut, formData) .then(async () => { - await router.push( + await success($q, "ดำเนินการสำเร็จ"); + router.push( `${ empType.value === "-employee" ? `/retirementEmployee` : `/retirement/dismiss-order` }` ); - await success($q, "ดำเนินการสำเร็จ"); }) .catch((e) => { messageError($q, e); @@ -547,8 +549,8 @@ function otherPost() { await http .post(config.API.placemenOther, formData) .then(async () => { - await router.push("/placement/other"); await success($q, "ดำเนินการสำเร็จ"); + router.push("/placement/other"); }) .catch((e) => { messageError($q, e); @@ -568,8 +570,8 @@ function appointEmployeePost() { await http .post(config.API.appointEmployee(), formData) .then(async () => { - await router.push("/placement/appoint-employee"); await success($q, "ดำเนินการสำเร็จ"); + router.push("/placement/appoint-employee"); }) .catch((e) => { messageError($q, e); @@ -599,8 +601,8 @@ function clickSaveDeceased() { await http .post(config.API.listDeceased(), formData) .then(async () => { - await router.push("/retirement/deceased"); await success($q, "บันทึกข้อมูลสำเร็จ"); + router.push("/retirement/deceased"); }) .catch((e) => { messageError($q, e);