Skip to content
Snippets Groups Projects
Commit 4b5be8b2 authored by srosse's avatar srosse
Browse files

OO-1802: enhance the passed and score rule to compute value from structure course element

parent d97683a3
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ public class PassedRuleSPI implements FilterRuleSPI {
passeds = new HashMap<>();
STCourseNode structureNode = (STCourseNode)courseNode;
if(structureNode.hasScoreConfigured()) {
if(structureNode.hasPassedConfigured()) {
for(Identity identity:identities) {
UserCourseEnvironment uce = AssessmentHelper.createAndInitUserCourseEnvironment(identity, course);
ScoreEvaluation scoreEval = structureNode.getUserScoreEvaluation(uce);
......
......@@ -146,7 +146,7 @@ public class CourseReminderLogsController extends FormBasicController {
updateModel();
}
private void updateModel() {
protected void updateModel() {
List<SentReminder> sentReminders = reminderService.getSentReminders(repositoryEntry);
List<SentReminderRow> rows = new ArrayList<>(sentReminders.size());
......
......@@ -137,6 +137,8 @@ public class CourseRemindersController extends BasicController implements Activa
WindowControl bwControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ores, null, getWindowControl());
reminderLogsCtrl = new CourseReminderLogsController(ureq, bwControl, repositoryEntry, toolbarPanel);
listenTo(reminderLogsCtrl);
} else {
reminderLogsCtrl.updateModel();
}
mainVC.put("segmentCmp", reminderLogsCtrl.getInitialComponent());
addToHistory(ureq, reminderLogsCtrl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment