|
|
@ -686,7 +686,8 @@ public class CustomerAgencyServiceImpl extends BaseServiceImpl<CustomerAgencyDao |
|
|
|
List<AgencyGridListResultDTO> gridList = customerGridDao.selectAgencyGridList(agencyEntity.getId()); |
|
|
|
returnDTO.setGridList(gridList); |
|
|
|
//递归查询当前组织的下级组织以及每个下级组织对应的网格列表
|
|
|
|
List<ArticleGridResultDTO> subAgencyGridList = getGridList(agencyEntity.getPids() + ":" + agencyEntity.getId()); |
|
|
|
//根组织pids为空
|
|
|
|
List<ArticleGridResultDTO> subAgencyGridList = getGridList(("".equals(agencyEntity.getPids())?"":agencyEntity.getPids() + ":")+agencyEntity.getId()); |
|
|
|
returnDTO.setSubAgencyGridList(subAgencyGridList); |
|
|
|
} else if (gridParty) { |
|
|
|
//4.2:查询人员在当前机关下参与的网格列表
|
|
|
|