From 093365df16484642030f24f4c2784370527a43b8 Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Thu, 16 May 2024 17:31:14 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=A5=E0=B8=B0?= =?UTF-8?q?=E0=B9=80=E0=B8=AD=E0=B8=B5=E0=B8=A2=E0=B8=94=20=E0=B8=A3?= =?UTF-8?q?=E0=B8=B2=E0=B8=A2=E0=B8=8A=E0=B8=B7=E0=B9=88=E0=B8=AD=E0=B8=9C?= =?UTF-8?q?=E0=B8=B9=E0=B9=89=E0=B8=AA=E0=B8=AD=E0=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/PersonalDetail/Information/Address.vue | 2 +- .../components/PersonalDetail/Information/Family.vue | 6 +++--- .../PersonalDetail/Information/Information.vue | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/modules/05_placement/components/PersonalDetail/Information/Address.vue b/src/modules/05_placement/components/PersonalDetail/Information/Address.vue index f03007b2a..37431453e 100644 --- a/src/modules/05_placement/components/PersonalDetail/Information/Address.vue +++ b/src/modules/05_placement/components/PersonalDetail/Information/Address.vue @@ -152,7 +152,7 @@ const editData = async () => { registrationSubDistrictId: registAddress.subDistrictId, registrationDistrictId: registAddress.districtId, registrationProvinceId: registAddress.provinceId, - registrationZipCode: registAddress.provinceId, + registrationZipCode: registAddress.zipCode, currentAddress: addressData.value.registSame == "1" ? addressData.value.registAddress diff --git a/src/modules/05_placement/components/PersonalDetail/Information/Family.vue b/src/modules/05_placement/components/PersonalDetail/Information/Family.vue index 2e3b21712..dc5a1ff56 100644 --- a/src/modules/05_placement/components/PersonalDetail/Information/Family.vue +++ b/src/modules/05_placement/components/PersonalDetail/Information/Family.vue @@ -124,16 +124,16 @@ const editData = async () => { const body = { couple: familyData.value.couple == "1", - couplePrefixId: familyData.value.marryPrefixId, + couplePrefix: familyData.value.marryPrefixId, coupleFirstName: familyData.value.marryFirstName, coupleLastName: familyData.value.marryLastName, coupleLastNameOld: "", coupleCareer: familyData.value.marryOccupation, - fatherPrefixId: familyData.value.fatherPrefixId, + fatherPrefix: familyData.value.fatherPrefixId, fatherFirstName: familyData.value.fatherFirstName, fatherLastName: familyData.value.fatherLastName, fatherCareer: familyData.value.fatherOccupation, - motherPrefixId: familyData.value.motherPrefixId, + motherPrefix: familyData.value.motherPrefixId, motherFirstName: familyData.value.motherFirstName, motherLastName: familyData.value.motherLastName, motherCareer: familyData.value.motherOccupation, diff --git a/src/modules/05_placement/components/PersonalDetail/Information/Information.vue b/src/modules/05_placement/components/PersonalDetail/Information/Information.vue index e2b67d78f..6b4c0d7b5 100644 --- a/src/modules/05_placement/components/PersonalDetail/Information/Information.vue +++ b/src/modules/05_placement/components/PersonalDetail/Information/Information.vue @@ -272,16 +272,16 @@ const editData = async () => { const body: any = { citizenId: informaData.value.idCard, - prefixId: informaData.value.prefixId, + prefix: informaData.value.prefixId, firstName: informaData.value.firstname, lastName: informaData.value.lastname, - genderId: informaData.value.genderId, + gender: informaData.value.genderId, nationality: informaData.value.nationality, race: informaData.value.race, - religionId: informaData.value.religionId, + religion: informaData.value.religionId, birthDate: informaData.value.dateOfBirth, - bloodGroupId: informaData.value.bloodGroupId, - relationshipId: informaData.value.relationshipId, + bloodGroup: informaData.value.bloodGroupId, + relationship: informaData.value.relationshipId, telephoneNumber: informaData.value.telephone, }; showLoader();