From 713b872fd9e8d00ac9496ec1e708ca4be05534a1 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Fri, 7 Jun 2024 18:04:26 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E0=B9=81=E0=B8=81=E0=B9=89=20type=20Cus?= =?UTF-8?q?tomer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/customer/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/customer/types.ts b/src/stores/customer/types.ts index 8d64bc6a..53df39d6 100644 --- a/src/stores/customer/types.ts +++ b/src/stores/customer/types.ts @@ -15,6 +15,7 @@ export type Customer = { createdAt: string; updateBy: string | null; updatedAt: string; + taxNo: string; }; export type CustomerBranch = { @@ -100,6 +101,7 @@ export type CustomerUpdate = { customerName?: string; customerNameEN?: string; customerBranch?: CustomerBranchCreate[]; + taxNo?: string | null; image?: File; };