参数收集进度管理-过滤掉控件类型为标题的数据

This commit is contained in:
zhn
2023-10-30 15:21:02 +08:00
parent 26a7061edf
commit b533edf18a
@@ -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)){