From 82210a99c9264d37dd3bfd28267c5db079597686 Mon Sep 17 00:00:00 2001 From: basssy Date: Thu, 10 Apr 2025 10:45:36 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B2=AC=EC=A0=81=EC=84=9C=20=EC=98=A4?= =?UTF-8?q?=ED=94=88=ED=94=8C=EB=9E=98=EA=B7=B8=20=ED=85=8D=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/estimate/Estimate.jsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/components/estimate/Estimate.jsx b/src/components/estimate/Estimate.jsx index 64b0ffbb..e2c6c088 100644 --- a/src/components/estimate/Estimate.jsx +++ b/src/components/estimate/Estimate.jsx @@ -2057,15 +2057,17 @@ export default function Estimate({}) { - {convertNumberToPriceDecimal( - item?.showSaleTotPrice === '0' - ? null - : item?.amount === '' - ? null - : item?.saleTotPrice === '0' + {item?.openFlg === '1' + ? 'OPEN' + : convertNumberToPriceDecimal( + item?.showSaleTotPrice === '0' ? null - : item?.saleTotPrice?.replaceAll(',', ''), - )} + : item?.amount === '' + ? null + : item?.saleTotPrice === '0' + ? null + : item?.saleTotPrice?.replaceAll(',', ''), + )} )