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(',', ''),
+ )}
|
)