From 96c69e25608ca1a139237a153eff1540f1b0ea40 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Fri, 18 Oct 2024 10:25:13 +0700 Subject: [PATCH] fix: change to non percent --- src/controllers/05-quotation-controller.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/controllers/05-quotation-controller.ts b/src/controllers/05-quotation-controller.ts index 9afe1f2..099bfee 100644 --- a/src/controllers/05-quotation-controller.ts +++ b/src/controllers/05-quotation-controller.ts @@ -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[]; }[];