diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index 30d49988..7b08f7f9 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -200,6 +200,8 @@ export type Quotation = { statusOrder: number; status: Status; + registeredBranchId: string; + customerBranchId: string; customerBranch: CustomerBranchRelation; @@ -261,6 +263,7 @@ export type QuotationFull = { status: Status; customerBranchId: string; + registeredBranchId: string; createdByUserId: string; createdAt: string | Date; @@ -282,6 +285,8 @@ export type QuotationPayload = { service?: ServiceRelation | null; }[]; customerBranchId: string; + registeredBranchId: string; + registeredBranch: { id: string; name: string }; urgent: boolean; worker: EmployeeWorker[]; _count: { worker: number };