fix: type

This commit is contained in:
Methapon Metanipat 2024-10-03 09:47:49 +07:00
parent 362cb7c15a
commit 31fd37a503

View file

@ -251,17 +251,15 @@ export type QuotationFull = {
}; };
export type QuotationPayload = { export type QuotationPayload = {
productServiceList: [ productServiceList: {
{ vat: number;
vat: number; pricePerUnit: number;
pricePerUnit: number; discount: number;
discount: number; amount: number;
amount: number; productId: string;
productId: string; workId: string;
workId: string; serviceId: string;
serviceId: string; }[];
},
];
urgent: boolean; urgent: boolean;
customerBranchId: string; customerBranchId: string;
worker: (string | EmployeeWorker)[]; worker: (string | EmployeeWorker)[];