|
|
@ -407,7 +407,7 @@ public class GovernRankDataExtractServiceImpl implements GovernRankDataExtractSe |
|
|
|
})); |
|
|
|
} |
|
|
|
//自制率 自治项目数/办结项目数
|
|
|
|
List<OrgStatisticsResultDTO> selfList = factOriginProjectMainDailyService.getSelfProject(customerId, dateId, OrgTypeConstant.COMMUNITY); |
|
|
|
List<OrgStatisticsResultDTO> selfList = factOriginProjectMainDailyService.getSelfProjectDaily(customerId, dateId, OrgTypeConstant.COMMUNITY); |
|
|
|
if (CollectionUtils.isNotEmpty(selfList)) { |
|
|
|
list.forEach(entity -> selfList.stream().filter(self -> entity.getOrgId().equals(self.getAgencyId())).forEach(dto -> { |
|
|
|
if (dto.getSum() != NumConstant.ZERO) { |
|
|
@ -480,7 +480,7 @@ public class GovernRankDataExtractServiceImpl implements GovernRankDataExtractSe |
|
|
|
})); |
|
|
|
} |
|
|
|
//自制率 自治项目数/办结项目数
|
|
|
|
List<OrgStatisticsResultDTO> selfList = factOriginProjectMainDailyService.getSelfProject(customerId, dateId, OrgTypeConstant.STREET); |
|
|
|
List<OrgStatisticsResultDTO> selfList = factOriginProjectMainDailyService.getSelfProjectDaily(customerId, dateId, OrgTypeConstant.STREET); |
|
|
|
if (CollectionUtils.isNotEmpty(selfList)) { |
|
|
|
list.forEach(entity -> selfList.stream().filter(self -> entity.getOrgId().equals(self.getAgencyId())).forEach(dto -> { |
|
|
|
if (dto.getSum() != NumConstant.ZERO) { |
|
|
@ -553,7 +553,7 @@ public class GovernRankDataExtractServiceImpl implements GovernRankDataExtractSe |
|
|
|
})); |
|
|
|
} |
|
|
|
//自制率 自治项目数/办结项目数
|
|
|
|
List<OrgStatisticsResultDTO> selfList = factOriginProjectMainDailyService.getSelfProject(customerId, dateId, OrgTypeConstant.DISTRICT); |
|
|
|
List<OrgStatisticsResultDTO> selfList = factOriginProjectMainDailyService.getSelfProjectDaily(customerId, dateId, OrgTypeConstant.DISTRICT); |
|
|
|
if (CollectionUtils.isNotEmpty(selfList)) { |
|
|
|
list.forEach(entity -> selfList.stream().filter(self -> entity.getOrgId().equals(self.getAgencyId())).forEach(dto -> { |
|
|
|
if (dto.getSum() != NumConstant.ZERO) { |
|
|
|