refactor: add registeredBranchId
This commit is contained in:
parent
2fe37da69f
commit
6828a42a45
1 changed files with 5 additions and 0 deletions
|
|
@ -200,6 +200,8 @@ export type Quotation = {
|
||||||
statusOrder: number;
|
statusOrder: number;
|
||||||
status: Status;
|
status: Status;
|
||||||
|
|
||||||
|
registeredBranchId: string;
|
||||||
|
|
||||||
customerBranchId: string;
|
customerBranchId: string;
|
||||||
customerBranch: CustomerBranchRelation;
|
customerBranch: CustomerBranchRelation;
|
||||||
|
|
||||||
|
|
@ -261,6 +263,7 @@ export type QuotationFull = {
|
||||||
status: Status;
|
status: Status;
|
||||||
|
|
||||||
customerBranchId: string;
|
customerBranchId: string;
|
||||||
|
registeredBranchId: string;
|
||||||
|
|
||||||
createdByUserId: string;
|
createdByUserId: string;
|
||||||
createdAt: string | Date;
|
createdAt: string | Date;
|
||||||
|
|
@ -282,6 +285,8 @@ export type QuotationPayload = {
|
||||||
service?: ServiceRelation | null;
|
service?: ServiceRelation | null;
|
||||||
}[];
|
}[];
|
||||||
customerBranchId: string;
|
customerBranchId: string;
|
||||||
|
registeredBranchId: string;
|
||||||
|
registeredBranch: { id: string; name: string };
|
||||||
urgent: boolean;
|
urgent: boolean;
|
||||||
worker: EmployeeWorker[];
|
worker: EmployeeWorker[];
|
||||||
_count: { worker: number };
|
_count: { worker: number };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue