From 9abb7b65becbea2a54e6f42208194db4137756ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Wed, 4 Feb 2026 19:41:40 +0900 Subject: [PATCH] =?UTF-8?q?chore(WEB):=20DevFill=20=EA=B2=AC=EC=A0=81=20?= =?UTF-8?q?=EA=B0=80=EB=A1=9C/=EC=84=B8=EB=A1=9C=20100=EB=8B=A8=EC=9C=84?= =?UTF-8?q?=EB=A1=9C=20=EC=83=9D=EC=84=B1=EB=90=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/quotes/QuoteRegistrationV2.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/quotes/QuoteRegistrationV2.tsx b/src/components/quotes/QuoteRegistrationV2.tsx index 2ad6903a..7cc5b506 100644 --- a/src/components/quotes/QuoteRegistrationV2.tsx +++ b/src/components/quotes/QuoteRegistrationV2.tsx @@ -229,8 +229,8 @@ export function QuoteRegistrationV2({ const randomFloor = floors[Math.floor(Math.random() * floors.length)]; const randomPrefix = codePrefix[Math.floor(Math.random() * codePrefix.length)]; - const randomWidth = Math.floor(Math.random() * 4000) + 2000; // 2000~6000 - const randomHeight = Math.floor(Math.random() * 3000) + 2000; // 2000~5000 + const randomWidth = (Math.floor(Math.random() * 40) + 20) * 100; // 2000~6000 (100단위) + const randomHeight = (Math.floor(Math.random() * 30) + 20) * 100; // 2000~5000 (100단위) // BOM이 있는 제품 중에서 랜덤 선택 (없으면 전체에서 선택) const productPool = productsWithBom.length > 0 ? productsWithBom : finishedGoods; const randomProduct = productPool[Math.floor(Math.random() * productPool.length)];