fix: 88350 外来标准法规文本库--导入--必填字段为空没有相关提示
This commit is contained in:
@@ -171,6 +171,15 @@ public class ImportUtil {
|
||||
}
|
||||
}
|
||||
|
||||
// 必填验证
|
||||
if (YesOrNoEnum.YES.getValue().equals(tag.getFieldMustInput())) {
|
||||
if (!this.mustInputValid(cell)) {
|
||||
log.error("第" + row + "列" + tag.getDbFieldTxt() + "为必填 ");
|
||||
errMsg.append("第").append(row).append("列").append(tag.getDbFieldTxt()).append("为必填 ");
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
// 获取当前单元格内容
|
||||
if (cell == null) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user