yin 1 anno fa
parent
commit
e7c895134d

+ 1 - 1
stmms-biz/src/main/java/cn/com/qmth/stmms/biz/report/service/impl/ReportServiceImpl.java

@@ -329,13 +329,13 @@ public class ReportServiceImpl implements ReportService {
         uploadCollege(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), "学院分析");
         uploadClass(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), "班级分析");
         uploadTeacher(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), "任课老师统计");
-        uploadQuestion(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), true, "客观题分析");
         uploadQuestion(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), false, "主观题分析");
         uploadGroup(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), "分组统计分析");
     }
 
     private void reoprtExcelObjective(int examId, String subjectCode) throws IOException, Exception {
         uploadObjectiveRange(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), "课程客观题分段统计");
+        uploadQuestion(examId, subjectCode, findExamSubject(examId, subjectCode).getName(), true, "客观题分析");
     }
 
     private void uploadGroup(int examId, String subjectCode, String subjectName, String name)