From 811baa3ddccf0b38a53078e03d8980e17a8b4df3 Mon Sep 17 00:00:00 2001 From: Net Date: Fri, 2 Aug 2024 10:00:45 +0700 Subject: [PATCH] refactor: add type of CustomerBranchCreate --- 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 c7e46fbf..1995bf7b 100644 --- a/src/stores/customer/types.ts +++ b/src/stores/customer/types.ts @@ -63,6 +63,7 @@ export type CustomerBranch = { }; export type CustomerBranchCreate = { + id?: string; code?: string; branchNo?: number; address: string; @@ -91,6 +92,7 @@ export type CustomerBranchCreate = { payDate: Date; wageRate: number; file?: File[]; + statusSave?: boolean; }; export type CustomerCreate = {