Commit 53a66327 authored by helinlin's avatar helinlin

待办任务列表只显示自己单位的隐患数据

parent 96ad3e80
...@@ -51,6 +51,9 @@ public class RuleDangerService { ...@@ -51,6 +51,9 @@ public class RuleDangerService {
//只发送给本部门的人员 //只发送给本部门的人员
Long pointId = latentDanger.getBizInfo().getLong("pointId"); Long pointId = latentDanger.getBizInfo().getLong("pointId");
if (pointId == null || pointId == 0) {
return false;
}
FeignClientResult<List<CompanyPerson>> companyPersons = jcsFeignClient.selectCompanyPerson(Collections.singletonList(pointId)); FeignClientResult<List<CompanyPerson>> companyPersons = jcsFeignClient.selectCompanyPerson(Collections.singletonList(pointId));
if (companyPersons.getStatus() != 200) { if (companyPersons.getStatus() != 200) {
return false; return false;
...@@ -65,7 +68,6 @@ public class RuleDangerService { ...@@ -65,7 +68,6 @@ public class RuleDangerService {
orgUsrDto -> agencyUserModel.getUserId().equals(orgUsrDto.getAmosOrgId()) orgUsrDto -> agencyUserModel.getUserId().equals(orgUsrDto.getAmosOrgId())
) )
).collect(Collectors.toList()); ).collect(Collectors.toList());
List<String> userIds = userModelList.stream().map(AgencyUserModel::getUserId).collect(Collectors.toList()); List<String> userIds = userModelList.stream().map(AgencyUserModel::getUserId).collect(Collectors.toList());
latentDangerRo.setRecivers(userIds); latentDangerRo.setRecivers(userIds);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment