|
|
@ -404,6 +404,7 @@ public class IndexServiceImpl implements IndexService { |
|
|
|
List<SubAgencyIndexRankResultDTO> streetList = screenIndexDataMonthlyDao.selectSubStreetByAreaCode(formDTO.getCustomerId(),yearId,formDTO.getAreaCode(),formDTO.getTopNum()); |
|
|
|
// 小数四舍五入
|
|
|
|
streetList.forEach(indexRank -> { |
|
|
|
indexRank.setOrgType("street"); |
|
|
|
indexRank.setPartyDevAbility(getRound(indexRank.getPartyDevAbility())); |
|
|
|
indexRank.setGovernAbility(getRound(indexRank.getGovernAbility())); |
|
|
|
indexRank.setServiceAbility(getRound(indexRank.getServiceAbility())); |
|
|
@ -414,6 +415,7 @@ public class IndexServiceImpl implements IndexService { |
|
|
|
List<SubAgencyIndexRankResultDTO> gridList = screenIndexDataMonthlyDao.selectSubGridByAreaCode(formDTO.getCustomerId(),yearId,formDTO.getAreaCode(),formDTO.getTopNum()); |
|
|
|
// 小数四舍五入
|
|
|
|
gridList.forEach(indexRank -> { |
|
|
|
indexRank.setOrgType("grid"); |
|
|
|
indexRank.setPartyDevAbility(getRound(indexRank.getPartyDevAbility())); |
|
|
|
indexRank.setGovernAbility(getRound(indexRank.getGovernAbility())); |
|
|
|
indexRank.setServiceAbility(getRound(indexRank.getServiceAbility())); |
|
|
|