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 = {
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)[];