From a1fa91798f66e68975d39ae6ff5a3d2b644db556 Mon Sep 17 00:00:00 2001 From: kittapath Date: Mon, 20 Jan 2025 22:26:37 +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=B9=83=E0=B8=AB?= =?UTF-8?q?=E0=B9=89=E0=B8=AD=E0=B8=AD=E0=B8=81=E0=B8=88=E0=B8=B2=E0=B8=81?= =?UTF-8?q?=E0=B8=A3=E0=B8=B2=E0=B8=8A=E0=B8=81=E0=B8=B2=E0=B8=A3=20add=20?= =?UTF-8?q?ProfileType?= 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 2f14df133..a231b2133 100644 --- a/src/modules/04_registryPerson/views/detailView.vue +++ b/src/modules/04_registryPerson/views/detailView.vue @@ -510,6 +510,10 @@ function clickPassaway() { function outPost() { const formData = new FormData(); formData.append("id", profileId.value); + formData.append( + "ProfileType", + empType.value === "-employee" ? "EMPLOYEE" : "OFFICER" + ); dialogConfirm($q, async () => { showLoader(); await http