fix: change to non percent

This commit is contained in:
Methapon Metanipat 2024-10-18 10:25:13 +07:00
parent bb1e6cf38b
commit 96c69e2560

View file

@ -71,10 +71,6 @@ type QuotationCreate = {
workId?: string;
productId: string;
amount: number;
/**
* @maximum 1
* @minimum 0
*/
discount?: number;
workerIndex?: number[];
}[];
@ -126,10 +122,6 @@ type QuotationUpdate = {
workId?: string;
productId: string;
amount: number;
/**
* @maximum 1
* @minimum 0
*/
discount?: number;
workerIndex?: number[];
}[];