This commit is contained in:
wulin 2020-12-28 11:35:48 +08:00
commit 924cc3de41

View File

@ -377,7 +377,9 @@ public class ChartResultServiceImpl implements ChartResultService {
return Collections.EMPTY_LIST;
}
log.info("selectChartDetailList 管理部门:" + JSON.toJSONString(mandepartmentIds));
mandepartmentIds.retainAll(allDeparmentIds);
if(CollectionUtils.isNotEmpty(allDeparmentIds)){
mandepartmentIds.retainAll(allDeparmentIds);
}
if(mandepartmentIds.size()==0){
return Collections.EMPTY_LIST;
}