teilnoten/punkte berechnen für notenvorschläge; vorschläge übernehmen; noten freigabe mit passwort; prüfungen generisch anzeigen nach datum gruppiert; prüfungen anlegen/bearbeiten auf mapping termin1/2/3 möglich.

This commit is contained in:
Johann Hoffmann
2025-07-24 17:02:57 +02:00
parent fe7feeb74e
commit 6a3982347b
11 changed files with 1270 additions and 118 deletions
+3 -2
View File
@@ -12,9 +12,10 @@ class Note_model extends DB_Model
$this->pk = 'note';
}
public function getAll() {
public function getAllActive() {
$qry ="SELECT *
FROM lehre.tbl_note";
FROM lehre.tbl_note
WHERE aktiv = true";
return $this->execReadOnlyQuery($qry);
}