|
@@ -84,7 +84,7 @@ public class ExamRegistrationServiceImpl extends BaseServiceImpl<Long, ExamRegis
|
|
|
}
|
|
|
|
|
|
ExamRegistration registration = examRegistrationDao.getRegistration(examinationBasic.getId(), examRegistration.getStudentId(), examRegistration.getSubjectId(), examSubjectSong.getLevel());
|
|
|
- if(registration != null){
|
|
|
+ if(registration != null && !registration.getStatus().equals(StudentRegistrationStatusEnum.PAY_WAIT)){
|
|
|
throw new BizException("该考级相同专业及等级您已报名,请勿重复报名");
|
|
|
}
|
|
|
|