|
|
@@ -57,14 +57,16 @@ public class QueryRoadListByDeptIdService { |
|
|
|
Dept dept = (Dept) result.getData(); |
|
|
|
|
|
|
|
// 获取公路列表 |
|
|
|
List<RoadInformation> roadInformationList; |
|
|
|
if (SystemConstant.ROOT_DEPT_PID.equals(dept.getPid())) { |
|
|
|
// 顶级部门获取所有的公路列表 |
|
|
|
roadInformationList = this.getAllRoadInformationList(tenantId); |
|
|
|
} else { |
|
|
|
// 非顶级部门获取该部门下公路列表 |
|
|
|
roadInformationList = this.getRoadInformationListByDeptId(tenantId, deptId); |
|
|
|
} |
|
|
|
// List<RoadInformation> roadInformationList; |
|
|
|
// if (SystemConstant.ROOT_DEPT_PID.equals(dept.getPid())) { |
|
|
|
// // 顶级部门获取所有的公路列表 |
|
|
|
// roadInformationList = this.getAllRoadInformationList(tenantId); |
|
|
|
// } else { |
|
|
|
// // 非顶级部门获取该部门下公路列表 |
|
|
|
// roadInformationList = this.getRoadInformationListByDeptId(tenantId, deptId); |
|
|
|
// } |
|
|
|
// 获取公路列表 |
|
|
|
List<RoadInformation> roadInformationList = this.getRoadInformationListByDeptId(tenantId, deptId); |
|
|
|
if (CollectionUtil.isEmpty(roadInformationList)) { |
|
|
|
log.info("根据部门Id查询公路列表业务:公路信息为空"); |
|
|
|
return JsonResult.error(QueryRoadListByDeptIdCodeEnum.ROAD_LIST_IS_NULL.getCode(), QueryRoadListByDeptIdCodeEnum.ROAD_LIST_IS_NULL.getMsg()); |