参数清单收集-控件校验修改-填写人导入
This commit is contained in:
+9
-1
@@ -3666,6 +3666,12 @@ public class ParamsCollectManifestEOServiceImpl extends ServiceImpl<ParamsCollec
|
||||
if (checkObjAllFieldsIsNull(importDto)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// 如果id为空,不做处理
|
||||
if(StringUtils.isEmpty(importDto.getId())){
|
||||
continue;
|
||||
}
|
||||
|
||||
// 处理文件
|
||||
if (StringUtils.isNotBlank(importDto.getFileConnectId())) { // 判空,否则报空指针异常
|
||||
List<File> nowFileList = FileUnZip.readFileByFilename(unzipfilepath, importDto.getFileConnectId(), null, null, null, null, null);
|
||||
@@ -5376,7 +5382,9 @@ public class ParamsCollectManifestEOServiceImpl extends ServiceImpl<ParamsCollec
|
||||
countError ++;
|
||||
}
|
||||
}
|
||||
configDataList.add(configDataEO);
|
||||
if(StringUtils.isNotEmpty(configDataEO.getId())){
|
||||
configDataList.add(configDataEO);
|
||||
}
|
||||
}
|
||||
|
||||
if (countError > 0) {
|
||||
|
||||
Reference in New Issue
Block a user