修改项目汇总统计

master
OathK1per 2022-02-23 10:50:32 +08:00
parent 06c97f63dd
commit 5c7ddd67d7
1 changed files with 11 additions and 0 deletions

View File

@ -100,6 +100,17 @@ public class StatisticsService {
} }
if(CollectionUtil.isEmpty(projectIds)){ if(CollectionUtil.isEmpty(projectIds)){
List<CashFlowStatisticsBean> cashFlow = new ArrayList<>();
CashFlowStatisticsBean cashFlowStatisticsBean = new CashFlowStatisticsBean();
cashFlowStatisticsBean.setTitle("预算金额");
list.add(include);
list.add(exclude);
profitAndLossList.add(profitAndLossBeanInclude);
profitAndLossList.add(profitAndLossBeanExclude);
cashFlow.add(cashFlowStatisticsBean);
statisticsBean.setPrimaryIndicatorBeanList(list);
statisticsBean.setProfitAndLossBeanList(profitAndLossList);
statisticsBean.setCashFlowStatisticsBeanList(cashFlow);
return statisticsBean; return statisticsBean;
} }