From 035d3b0dcf7753dccfc90427af8ea0d6da635b4e Mon Sep 17 00:00:00 2001 From: Net Date: Thu, 18 Jul 2024 09:27:43 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20taxNo=20?= =?UTF-8?q?=E0=B8=82=E0=B8=AD=E0=B8=87=E0=B8=99=E0=B8=B2=E0=B8=A2=E0=B8=88?= =?UTF-8?q?=E0=B9=89=E0=B8=B2=E0=B8=87=E0=B9=84=E0=B8=A1=E0=B9=88=E0=B9=81?= =?UTF-8?q?=E0=B8=AA=E0=B8=94=E0=B8=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/03_customer-management/MainPage.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 4a41ca28..e8d34bec 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -1157,6 +1157,8 @@ async function assignFormData(customerId: string, branch?: CustomerBranch) { }; data.branch.forEach((v) => { + console.log(v.taxNo); + prevCustomer.value.customerBranch?.push({ code: v.code, branchNo: v.branchNo, @@ -1190,6 +1192,8 @@ async function assignFormData(customerId: string, branch?: CustomerBranch) { }); cloneData(); + + console.log(formData.value); } function cloneData() { @@ -3560,6 +3564,10 @@ watch([inputSearch, currentStatus], async () => { formData.customerBranch?.[indexTab] " :type-customer="customerType" + v-model:legal-entity-code=" + formData.customerBranch[indexTab].legalPersonNo + " + v-model:tax-no="formData.customerBranch[indexTab].taxNo" v-model:branch-code="formData.customerBranch[indexTab].code" v-model:branch-no="formData.customerBranch[indexTab].branchNo" v-model:customer-name="formData.customerBranch[indexTab].name"