Commit ab300580 authored by 竹天卫's avatar 竹天卫

非标产值进入总产值

parent 30e6c337
...@@ -739,8 +739,8 @@ public class PrecipriceServiceImpl extends ServiceImpl<PrecipriceMapper, Precipr ...@@ -739,8 +739,8 @@ public class PrecipriceServiceImpl extends ServiceImpl<PrecipriceMapper, Precipr
BigDecimal analyseRateBig = BigDecimal.valueOf(rate); //分析占比 BigDecimal analyseRateBig = BigDecimal.valueOf(rate); //分析占比
return quotaDayBig.multiply(coefficientBig) return quotaDayBig.multiply(coefficientBig)
.divide(reportedAnalyseRtsBig, 2, RoundingMode.HALF_DOWN) .divide(reportedAnalyseRtsBig, 10,BigDecimal.ROUND_HALF_UP)
.multiply(assessValueBig).multiply(analyseRateBig) .multiply(assessValueBig).multiply(analyseRateBig)
.setScale(2, RoundingMode.HALF_DOWN); .setScale(2, BigDecimal.ROUND_HALF_UP);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment