Skip to content

Commit 28bc9af

Browse files
Only list courses with idnumber in remaining courses
1 parent 6fb5782 commit 28bc9af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

classes/local/table/remaining_courses_table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function __construct($categoryids, $semester, evasys_category $evasyscate
6161
'LEFT JOIN {' . dbtables::EVAL_REQUESTS_COURSES . '} evreqc ON evreqc.courseid = c.id ' .
6262
'LEFT JOIN {' . dbtables::EVAL_COURSES . '} evalc ON evalc.courseid = c.id ';
6363
$params = ['semesterfieldid' => $semesterfield->id];
64-
$where = ['evreqc.id IS NULL and evalc.id IS NULL'];
64+
$where = ["evreqc.id IS NULL and evalc.id IS NULL and c.idnumber <> ''"];
6565

6666
if ($categoryids != null) {
6767
list($insql, $inparams) = $DB->get_in_or_equal($categoryids, SQL_PARAMS_NAMED);

lang/de/block_evasys_sync.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
$string['courses_with_errors'] = 'Kurse mit Fehlern!';
257257
$string['courses_with_requests'] = 'Kurse mit ausstehenden Evaluationsanträgen';
258258
$string['courses_with_automatic_evals'] = 'Kurse mit automatischen Evaluationen';
259-
$string['courses_with_manual_evals'] = 'Kurse mit manuellen Evaluationen';
259+
$string['courses_with_manual_evals'] = 'Kurse mit bereits beantragten Evaluationen';
260260
$string['courses_without_evals'] = 'Kurse ohne Evaluationen';
261261

262262
$string['set_default_eval'] = 'Standardevaluation planen';

lang/en/block_evasys_sync.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@
267267
$string['courses_with_errors'] = 'Courses with errors!';
268268
$string['courses_with_requests'] = 'Courses with pending requests';
269269
$string['courses_with_automatic_evals'] = 'Courses with automatic evaluations';
270-
$string['courses_with_manual_evals'] = 'Courses with manual evaluations';
270+
$string['courses_with_manual_evals'] = 'Courses with already requested evaluations';
271271
$string['courses_without_evals'] = 'Courses without evaluations';
272272

273273
$string['set_default_eval'] = 'Set default evaluation';

0 commit comments

Comments
 (0)