From 461cd9fab8a32c9960d1582c0e97eea13ae15cc6 Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:37:54 +0700 Subject: [PATCH] =?UTF-8?q?refactor:=20=E0=B9=80=E0=B8=9E=E0=B8=B4?= =?UTF-8?q?=E0=B9=88=E0=B8=A1=20=20type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/employee/types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stores/employee/types.ts b/src/stores/employee/types.ts index ad612870..42932fd5 100644 --- a/src/stores/employee/types.ts +++ b/src/stores/employee/types.ts @@ -2,6 +2,8 @@ import { District, Province, SubDistrict } from '../address'; import { Status } from '../types'; import { User } from '../user/types'; +import { Customer , CustomerBranch } from '../customer/types'; + export type Employee = { id: string; code: string; @@ -45,6 +47,8 @@ export type Employee = { district: District | null; province: Province | null; profileImageUrl: string | null; + customerBranch: CustomerBranch & { customer: Customer } ; + }; export type EmployeeCreate = {