|
@@ -218,13 +218,13 @@ public class BusinessReportCostInfoServiceImpl implements IBusinessReportCostInf
|
|
|
if (currentMonth != null && lastMonth != null) {
|
|
|
Double linkCount = DataUtils.doubleSubtract(currentMonth, lastMonth);
|
|
|
Double linkRange = DataUtils.doubleDivide(linkCount, lastMonth);
|
|
|
- costItemVO.setLinkCount(linkCount);
|
|
|
+ costItemVO.setLinkCount(DataUtils.doubleDivide(linkCount, tenThousand));
|
|
|
costItemVO.setLinkRange(linkRange);
|
|
|
}
|
|
|
|
|
|
if (lastYearCount != null && yearCount != null) {
|
|
|
double sameCount = DataUtils.doubleSubtract(yearCount, lastYearCount);
|
|
|
- costItemVO.setSameCount(sameCount);
|
|
|
+ costItemVO.setSameCount(DataUtils.doubleDivide(sameCount, tenThousand));
|
|
|
costItemVO.setSameRange(DataUtils.doubleDivide(sameCount, lastYearCount));
|
|
|
}
|
|
|
return costItemVO;
|