diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 52f07d16..ab1a7db4 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -1,6 +1,14 @@ +import { CustomerType } from '../customer/types'; import { Status } from '../types'; type CustomerBranchRelation = { + customer: { + registeredBranchId: string; + selectedImage: string | null; + code: string; + customerType: CustomerType; + status: Status; + }; customerCode?: string; wageRateText: string; wageRate: number;