Browse Source

closedProjectCount统计

hotfix/zhy
zhangyuan 4 years ago
parent
commit
14c765bf78
  1. 2
      epdc-cloud-analysis-pc/src/main/java/com/elink/esua/epdc/modules/screen/service/impl/ScreenGovernanceServiceImpl.java

2
epdc-cloud-analysis-pc/src/main/java/com/elink/esua/epdc/modules/screen/service/impl/ScreenGovernanceServiceImpl.java

@ -71,6 +71,7 @@ public class ScreenGovernanceServiceImpl extends BaseServiceImpl<ScreenGovernanc
agencyResult.setTransferCount(agencyResult.getTransferCount() + item.getTransferCount()); agencyResult.setTransferCount(agencyResult.getTransferCount() + item.getTransferCount());
agencyResult.setResolvedCount(agencyResult.getResolvedCount() + item.getResolvedCount()); agencyResult.setResolvedCount(agencyResult.getResolvedCount() + item.getResolvedCount());
agencyResult.setClosedCount(agencyResult.getClosedCount() + item.getResolvedCount()); agencyResult.setClosedCount(agencyResult.getClosedCount() + item.getResolvedCount());
agencyResult.setClosedProjectCount(agencyResult.getClosedCount() + item.getResolvedCount());
agencyResult.setGovernCount(agencyResult.getGovernCount() + item.getGovernCount()); agencyResult.setGovernCount(agencyResult.getGovernCount() + item.getGovernCount());
agencyResult.setSatisfactionCount(agencyResult.getSatisfactionCount() + item.getSatisfactionCount()); agencyResult.setSatisfactionCount(agencyResult.getSatisfactionCount() + item.getSatisfactionCount());
} }
@ -93,6 +94,7 @@ public class ScreenGovernanceServiceImpl extends BaseServiceImpl<ScreenGovernanc
agencyResult.setTransferCount(transferCount); agencyResult.setTransferCount(transferCount);
agencyResult.setResolvedCount(resolvedCount); agencyResult.setResolvedCount(resolvedCount);
agencyResult.setClosedCount(closedCount); agencyResult.setClosedCount(closedCount);
agencyResult.setClosedProjectCount(closedCount);
agencyResult.setGovernCount(governCount); agencyResult.setGovernCount(governCount);
agencyResult.setSatisfactionCount(satisfactionCount); agencyResult.setSatisfactionCount(satisfactionCount);
} }

Loading…
Cancel
Save