|
@@ -7,17 +7,12 @@ import com.persagy.apm.energy.report.monthly.config.function.model.Function;
|
|
|
import com.persagy.apm.energy.report.monthly.config.function.service.IFunctionService;
|
|
|
import com.persagy.apm.energy.report.monthly.config.functiongroup.model.FunctionGroup;
|
|
|
import com.persagy.apm.energy.report.monthly.config.functiongroup.service.IFunctionGroupService;
|
|
|
-import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportCostInfoService;
|
|
|
import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostItemVO;
|
|
|
-import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostVO;
|
|
|
import com.persagy.apm.energy.report.monthly.detail.common.model.vo.GroupInfo;
|
|
|
import com.persagy.apm.energy.report.monthly.detail.common.service.IReportCostInfoService;
|
|
|
import com.persagy.apm.energy.report.monthly.functionvalue.service.IFunctionValueService;
|
|
|
-import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
|
|
|
-import com.persagy.apm.energy.report.monthly.outline.service.IReportOutlineService;
|
|
|
import com.persagy.apm.energy.report.saasweb.model.vo.ReportProjectVO;
|
|
|
import com.persagy.apm.energy.report.saasweb.service.ISaasWebService;
|
|
|
-import org.apache.commons.lang.StringUtils;
|
|
|
import org.assertj.core.util.Lists;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -26,7 +21,6 @@ import org.springframework.util.CollectionUtils;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
-import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* 商业类报告费用service类
|
|
@@ -106,36 +100,25 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
|
|
|
if (FunctionTypeEnum.COST.getType().equals(functionType)) {
|
|
|
unit = 10000d;
|
|
|
}
|
|
|
-
|
|
|
- CostItemVO costItemVO = new CostItemVO();
|
|
|
- String currentMonthStr = functionValueService.getFunctionValue(functionId, reportMonth, projectId);
|
|
|
- Double currentMonth = null;
|
|
|
|
|
|
- if (StringUtils.isNotBlank(currentMonthStr)) {
|
|
|
- currentMonth = Double.valueOf(currentMonthStr);
|
|
|
- costItemVO.setCurrentMonth(DataUtils.doubleDivide(currentMonth, unit));
|
|
|
- }
|
|
|
- String lastMonthStr = functionValueService.getFunctionValue(
|
|
|
+ CostItemVO costItemVO = new CostItemVO();
|
|
|
+ Double currentMonth = functionValueService.getFunctionValue(functionId, reportMonth, projectId);
|
|
|
+ costItemVO.setCurrentMonth(DataUtils.doubleDivide(currentMonth, unit));
|
|
|
+ Double lastMonth = functionValueService.getFunctionValue(
|
|
|
functionId, DateUtils.getFirstDayOfLastMonth(reportMonth), projectId);
|
|
|
- Double lastMonth = null;
|
|
|
- if (StringUtils.isNotBlank(lastMonthStr)) {
|
|
|
- lastMonth = Double.valueOf(lastMonthStr);
|
|
|
- costItemVO.setLastMonth(DataUtils.doubleDivide(lastMonth, unit));
|
|
|
- }
|
|
|
+ costItemVO.setLastMonth(DataUtils.doubleDivide(lastMonth, unit));
|
|
|
|
|
|
- // 统计去年同期的费用
|
|
|
+ // 统计去年同期累计费用
|
|
|
Double lastYearCount = null;
|
|
|
+ Date lastYearSameTime = DateUtils.getSameMonthFirstDayOfLastYear(reportMonth);
|
|
|
List<Date> lastYearMonths = DateUtils.getFirstDayOfEveryMonth(
|
|
|
DateUtils.getFirstDayOfLastYear(reportMonth),
|
|
|
- DateUtils.getSameMonthFirstDayOfLastYear(reportMonth));
|
|
|
+ lastYearSameTime);
|
|
|
List<CostItemVO> lastYearItems = new ArrayList<>();
|
|
|
for (Date lastYearMonth : lastYearMonths) {
|
|
|
CostItemVO tmp = new CostItemVO();
|
|
|
- String monthValue = functionValueService.getFunctionValue(functionId, lastYearMonth, projectId);
|
|
|
- if (StringUtils.isNotBlank(monthValue)) {
|
|
|
- tmp.setLastYearCount(Double.parseDouble(monthValue));
|
|
|
- lastYearItems.add(tmp);
|
|
|
- }
|
|
|
+ tmp.setLastYearCount(functionValueService.getFunctionValue(functionId, lastYearMonth, projectId));
|
|
|
+ lastYearItems.add(tmp);
|
|
|
}
|
|
|
Double zero = 0d;
|
|
|
CostItemVO lastYearSumItem = getCostSum(lastYearItems);
|
|
@@ -157,11 +140,8 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
|
|
|
List<CostItemVO> yearItems = new ArrayList<>();
|
|
|
for (Date yearMonth : yearMonths) {
|
|
|
CostItemVO tmp = new CostItemVO();
|
|
|
- String monthValue = functionValueService.getFunctionValue(functionId, yearMonth, projectId);
|
|
|
- if (StringUtils.isNotBlank(monthValue)) {
|
|
|
- tmp.setYearCount(Double.parseDouble(monthValue));
|
|
|
- yearItems.add(tmp);
|
|
|
- }
|
|
|
+ tmp.setYearCount(functionValueService.getFunctionValue(functionId, yearMonth, projectId));
|
|
|
+ yearItems.add(tmp);
|
|
|
}
|
|
|
|
|
|
CostItemVO yearSumItem = getCostSum(yearItems);
|
|
@@ -175,6 +155,7 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ // 环比
|
|
|
if (currentMonth != null && lastMonth != null) {
|
|
|
Double linkCount = DataUtils.doubleSubtract(currentMonth, lastMonth);
|
|
|
Double linkRange = DataUtils.doubleDivide(linkCount, lastMonth);
|
|
@@ -182,11 +163,24 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
|
|
|
costItemVO.setLinkRange(linkRange);
|
|
|
}
|
|
|
|
|
|
+ // 累计同比
|
|
|
if (lastYearCount != null && yearCount != null) {
|
|
|
double sameCount = DataUtils.doubleSubtract(yearCount, lastYearCount);
|
|
|
costItemVO.setSameCount(DataUtils.doubleDivide(sameCount, unit));
|
|
|
costItemVO.setSameRange(DataUtils.doubleDivide(sameCount, lastYearCount));
|
|
|
}
|
|
|
+
|
|
|
+ // 去年同期月
|
|
|
+ Double lastYearSameTimeValue = functionValueService.getFunctionValue(functionId, lastYearSameTime, projectId);
|
|
|
+
|
|
|
+ if (lastYearSameTimeValue != null && currentMonth != null) {
|
|
|
+ double sameTimeGrowth = DataUtils.doubleSubtract(currentMonth, lastYearSameTimeValue);
|
|
|
+ // 月同比增量
|
|
|
+ costItemVO.setSameTimeGrowth(sameTimeGrowth);
|
|
|
+ // 月同比增幅
|
|
|
+ costItemVO.setSameTimeRange(DataUtils.doubleDivide(sameTimeGrowth, lastYearSameTimeValue));
|
|
|
+ }
|
|
|
+
|
|
|
return costItemVO;
|
|
|
}
|
|
|
|