|
@@ -95,7 +95,9 @@ public class RejectController extends BaseExamController {
|
|
|
group.setQuestionList(questionService.findByExamAndSubjectAndObjectiveAndGroupNumber(examId,
|
|
|
group.getSubjectCode(), false, group.getNumber()));
|
|
|
library.setTitle(group.getTitle());
|
|
|
- library.setMarkerScoreList(library.getMarkerScoreList().replace(UN_SELECTIVE_SCORE, "/"));
|
|
|
+ if(library.getMarkerScoreList()!=null){
|
|
|
+ library.setMarkerScoreList(library.getMarkerScoreList().replace(UN_SELECTIVE_SCORE, "/"));
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
model.addAttribute("query", query);
|
|
@@ -148,7 +150,9 @@ public class RejectController extends BaseExamController {
|
|
|
group.setQuestionList(questionService.findByExamAndSubjectAndObjectiveAndGroupNumber(examId,
|
|
|
group.getSubjectCode(), false, group.getNumber()));
|
|
|
h.setTitle(group.getTitle());
|
|
|
- h.setScoreList(h.getScoreList().replace(UN_SELECTIVE_SCORE, "/"));
|
|
|
+ if(h.getScoreList()!=null){
|
|
|
+ h.setScoreList(h.getScoreList().replace(UN_SELECTIVE_SCORE, "/"));
|
|
|
+ }
|
|
|
}
|
|
|
model.addAttribute("query", query);
|
|
|
model.addAttribute("subjectList", getExamSubject(examId, wu));
|