|
@@ -220,7 +220,10 @@ public class ExportExamStudentScore {
|
|
|
}
|
|
|
|
|
|
if (!curPaperStructKey.equals(paperStructKey)) {
|
|
|
- throw new StatusException("500", "考生之间存在试卷结构不一致的情况");
|
|
|
+ String msg = String.format("考生之间存在试卷结构不一致的情况!%s-%s-%s-", examId, courseId, examStudent.getExamStudentId());
|
|
|
+ log.warn(msg);
|
|
|
+ continue;
|
|
|
+ // throw new StatusException("500", msg);
|
|
|
}
|
|
|
|
|
|
examStudent.setDetails(curDynamicColumnValues);
|