参数收集进度管理-过滤掉控件类型为标题的数据
This commit is contained in:
+5
@@ -1222,6 +1222,11 @@ public class ParamsManifestEOServiceImpl extends ServiceImpl<ParamsManifestEOMap
|
||||
List<Map<String, Object>> listAll = paramsCollectManifestEOMapper.listInfoForExport(paramsCollectManifestEO, null);
|
||||
if(CollectionUtils.isEmpty(listAll)){
|
||||
listAll = paramsCollectManifestHistoryEOMapper.listInfoForExport(paramsCollectManifestEO, null);
|
||||
|
||||
if(ObjectUtil.isNotEmpty(listAll)){
|
||||
//过滤掉控件类型为标题的数据
|
||||
listAll = listAll.stream().filter(e->!ControlTypeEnum.Title.getValue().equals(e.get("control_type"))).collect(Collectors.toList());
|
||||
}
|
||||
}
|
||||
|
||||
if(ObjectUtil.isNotEmpty(firstLevelDutyTerritoryMap)){
|
||||
|
||||
Reference in New Issue
Block a user