diff --git a/src/stores/quotations/types.ts b/src/stores/quotations/types.ts index ee09501c..3f0632a7 100644 --- a/src/stores/quotations/types.ts +++ b/src/stores/quotations/types.ts @@ -251,17 +251,15 @@ export type QuotationFull = { }; export type QuotationPayload = { - productServiceList: [ - { - vat: number; - pricePerUnit: number; - discount: number; - amount: number; - productId: string; - workId: string; - serviceId: string; - }, - ]; + productServiceList: { + vat: number; + pricePerUnit: number; + discount: number; + amount: number; + productId: string; + workId: string; + serviceId: string; + }[]; urgent: boolean; customerBranchId: string; worker: (string | EmployeeWorker)[];