From 541c7295599703ce5b03ead2457f46254a2f53ee Mon Sep 17 00:00:00 2001 From: kittapath Date: Mon, 20 Jan 2025 22:25:10 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9F=E0=B8=B1=E0=B8=87=E0=B8=81=E0=B9=8C?= =?UTF-8?q?=E0=B8=8A=E0=B8=B1=E0=B8=99=E0=B8=AD=E0=B8=AD=E0=B8=81=E0=B8=84?= =?UTF-8?q?=E0=B8=B3=E0=B8=AA=E0=B8=B1=E0=B9=88=E0=B8=87=E0=B8=AD=E0=B8=B7?= =?UTF-8?q?=E0=B9=88=E0=B8=99=E0=B9=86=20add=20ProfileType?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/04_registryPerson/views/detailView.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/modules/04_registryPerson/views/detailView.vue b/src/modules/04_registryPerson/views/detailView.vue index dfda8ee8f..2f14df133 100644 --- a/src/modules/04_registryPerson/views/detailView.vue +++ b/src/modules/04_registryPerson/views/detailView.vue @@ -533,6 +533,10 @@ function outPost() { function otherPost() { const formData = new FormData(); formData.append("id", profileId.value); + formData.append( + "ProfileType", + empType.value === "-employee" ? "EMPLOYEE" : "OFFICER" + ); dialogConfirm($q, async () => { showLoader(); await http