deason 5 years ago
parent
commit
c0cbdb2d29

+ 4 - 1
src/main/java/cn/com/qmth/dp/examcloud/oe/modules/export_exam_student_score/ExportExamStudentScore.java

@@ -220,7 +220,10 @@ public class ExportExamStudentScore {
             }
             }
 
 
             if (!curPaperStructKey.equals(paperStructKey)) {
             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);
             examStudent.setDetails(curDynamicColumnValues);