Commit 01b18cac authored by 侯彦文's avatar 侯彦文

进度计划更新操作

parent a0731418
......@@ -330,17 +330,6 @@ public class ExtPlanServiceImpl<V extends ExtPlanVO> implements ExtPlanService<V
if (StringUtils.isEmpty(secretCodeKey)) {
buffer.append(String.format("第%s行密级格式不正确!", i + 1) + "<br/>");
}
if (!"更新".equals(excelVO.getOperate())) {
if (!StringUtils.isEmpty(excelVO.getSuperPlanCode())) {
//校验父级编号
ExtPlanVO extPlanVO = this.searchByNumber(excelVO.getSuperPlanCode());
if (ObjectUtils.isEmpty(extPlanVO)) {
buffer.append(String.format("第%s行父级编号不存在", i + 1) + "<br/>");
}
}
}
return buffer;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment