|
@@ -285,7 +285,7 @@ public class InspectedServiceImpl extends BaseQueryService<ExamStudent> implemen
|
|
|
return false;
|
|
|
}
|
|
|
Date now = new Date();
|
|
|
- studentService.inspect(student.getId(), now, userId);
|
|
|
+// studentService.inspect(student.getId(), now, userId);
|
|
|
InspectHistory i = new InspectHistory();
|
|
|
i.setExamId(student.getExamId());
|
|
|
i.setStudentId(student.getId());
|
|
@@ -294,7 +294,7 @@ public class InspectedServiceImpl extends BaseQueryService<ExamStudent> implemen
|
|
|
i.setInspectTime(now);
|
|
|
i.setInspectRound(subject.getInspectRound());
|
|
|
inspectHistoryService.save(i);
|
|
|
- studentService.updateInspectCount(student.getId(), inspectHistoryService.countByStudentId(student.getId()));
|
|
|
+ studentService.updateInspectCount(student.getId(), inspectHistoryService.countByStudentId(student.getId()),now, userId);
|
|
|
// this.releaseByStudent(student);
|
|
|
return true;
|
|
|
}
|