From a320fea11631f02859e137843ed62815ebb072c7 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Thu, 22 Jan 2026 10:27:32 +0700 Subject: [PATCH] fix(request-edit):send_citizenId --- src/modules/04_registryPerson/components/Dialog/04_Father.vue | 3 ++- src/modules/04_registryPerson/components/Dialog/05_Mother.vue | 3 ++- src/modules/04_registryPerson/components/Dialog/06_Couple.vue | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/modules/04_registryPerson/components/Dialog/04_Father.vue b/src/modules/04_registryPerson/components/Dialog/04_Father.vue index 9d0328f53..4f2f39c2c 100644 --- a/src/modules/04_registryPerson/components/Dialog/04_Father.vue +++ b/src/modules/04_registryPerson/components/Dialog/04_Father.vue @@ -60,6 +60,7 @@ async function closeDialog() { function onSubmit() { dialogConfirm($q, async () => { const body = { + fatherCitizenId: fatherData.citizenId, fatherPrefix: fatherData.prefix, fatherFirstName: fatherData.firstName, fatherLastName: fatherData.lastName, @@ -109,7 +110,7 @@ watch( () => { if (modal.value) { storeLinkCenter.fetchPerson(); - fatherData.citizenId = idCard.value; + // fatherData.citizenId = idCard.value; } } ); diff --git a/src/modules/04_registryPerson/components/Dialog/05_Mother.vue b/src/modules/04_registryPerson/components/Dialog/05_Mother.vue index 9d7f1b32a..107cd6409 100644 --- a/src/modules/04_registryPerson/components/Dialog/05_Mother.vue +++ b/src/modules/04_registryPerson/components/Dialog/05_Mother.vue @@ -60,6 +60,7 @@ async function closeDialog() { function onSubmit() { dialogConfirm($q, async () => { const body = { + motherCitizenId: motherData.citizenId, motherPrefix: motherData.prefix, motherFirstName: motherData.firstName, motherLastName: motherData.lastName, @@ -108,7 +109,7 @@ watch( () => { if (modal.value) { storeLinkCenter.fetchPerson(); - motherData.citizenId = idCard.value; + // motherData.citizenId = idCard.value; } } ); diff --git a/src/modules/04_registryPerson/components/Dialog/06_Couple.vue b/src/modules/04_registryPerson/components/Dialog/06_Couple.vue index 79106694b..db01ebf2b 100644 --- a/src/modules/04_registryPerson/components/Dialog/06_Couple.vue +++ b/src/modules/04_registryPerson/components/Dialog/06_Couple.vue @@ -64,6 +64,7 @@ async function closeDialog() { function onSubmit() { dialogConfirm($q, async () => { const body = { + coupleCitizenId: coupleData.citizenId, couplePrefix: coupleData.prefix, coupleFirstName: coupleData.firstName, coupleLastName: coupleData.lastName, @@ -132,7 +133,7 @@ watch( if (modal.value) { storeLinkCenter.fetchPerson(); storeLinkCenter.fetchDataRelationship(); - coupleData.citizenId = idCard.value; + // coupleData.citizenId = idCard.value; } } );