fix: type

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

View file

@ -251,8 +251,7 @@ export type QuotationFull = {
}; };
export type QuotationPayload = { export type QuotationPayload = {
productServiceList: [ productServiceList: {
{
vat: number; vat: number;
pricePerUnit: number; pricePerUnit: number;
discount: number; discount: number;
@ -260,8 +259,7 @@ export type QuotationPayload = {
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)[];