Merge branch 'feature/yj-layoutSetup' of https://git.hanasys.jp/qcast3/qcast-front into feature/yj-layoutSetup

This commit is contained in:
김민식 2025-04-10 10:54:29 +09:00
commit adf9febc8c

View File

@ -2057,15 +2057,17 @@ export default function Estimate({}) {
</div> </div>
</td> </td>
<td className="al-r"> <td className="al-r">
{convertNumberToPriceDecimal( {item?.openFlg === '1'
item?.showSaleTotPrice === '0' ? 'OPEN'
? null : convertNumberToPriceDecimal(
: item?.amount === '' item?.showSaleTotPrice === '0'
? null
: item?.saleTotPrice === '0'
? null ? null
: item?.saleTotPrice?.replaceAll(',', ''), : item?.amount === ''
)} ? null
: item?.saleTotPrice === '0'
? null
: item?.saleTotPrice?.replaceAll(',', ''),
)}
</td> </td>
</tr> </tr>
) )