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 = {