|
|
@ -138,7 +138,7 @@ public class PartyBaseInfoServiceImpl implements PartyBaseInfoService { |
|
|
|
}else { |
|
|
|
// 级别为 street,district,city,province
|
|
|
|
List<GridInfoResultDTO> directGridIds = gridService.selectDirectGrid(orgIds); |
|
|
|
List<UserCountResultDTO> userCountList = userGridDailyService.selectUserCount(customerId); |
|
|
|
List<UserCountResultDTO> userCountList = userGridDailyService.selectUserCount(customerId,dateId); |
|
|
|
agencyIdList.forEach(agency -> { |
|
|
|
String agencyId = agency.getAgencyId(); |
|
|
|
List<String> dGridId = new ArrayList<>(); |
|
|
@ -330,7 +330,7 @@ public class PartyBaseInfoServiceImpl implements PartyBaseInfoService { |
|
|
|
public GridPartyDTO gridParty(String customerId,String dateId,CustomerAgencyInfoResultDTO agency){ |
|
|
|
List<PartyBaseInfoFormDTO> result = new ArrayList<>(); |
|
|
|
List<String> orgIds = new ArrayList<>(); |
|
|
|
List<UserCountResultDTO> userCountList = userGridDailyService.selectUserCount(customerId); |
|
|
|
List<UserCountResultDTO> userCountList = userGridDailyService.selectUserCount(customerId,dateId); |
|
|
|
// 1. 处理社区下的所有网格中的党员信息
|
|
|
|
String agencyId = agency.getAgencyId(); |
|
|
|
// 获取下级所有agencyId【根据agencyMap中的level判断下级orgId是否是gridId】(此处直接作为gridId)
|
|
|
|