diff --git a/src/hooks/floorPlan/estimate/useEstimateController.js b/src/hooks/floorPlan/estimate/useEstimateController.js index 02f82a64..77141fdf 100644 --- a/src/hooks/floorPlan/estimate/useEstimateController.js +++ b/src/hooks/floorPlan/estimate/useEstimateController.js @@ -231,8 +231,7 @@ export const useEstimateController = (planNo) => { estimateData.pkgTotPrice = '0' } else { if (item.pkgMaterialFlg === '1') { - if (Number(item.salePrice) === 0) { - console.log('item:::', item) + if (isNaN(item.salePrice)) { itemFlg = false return alert(getMessage('estimate.detail.save.requiredSalePrice')) }