From 068ba2d293b5248eb2fb8af576e860140dad77a5 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Wed, 17 Sep 2025 11:53:15 +0700 Subject: [PATCH] fix: wrong tax --- src/services/flowaccount.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/flowaccount.ts b/src/services/flowaccount.ts index 33e09cf..c7d0f4c 100644 --- a/src/services/flowaccount.ts +++ b/src/services/flowaccount.ts @@ -312,7 +312,7 @@ const flowAccount = { ] .filter(Boolean) .join(" "), - contactTaxId: customer.citizenId || customer.code, + contactTaxId: customer.citizenId || customer.legalPersonNo, contactBranch: (customer.customer.customerType === CustomerType.PERS ? [customer.firstName, customer.lastName].join(" ").trim()