yellow dropdown styling only on editable tabulator colums for note_vorschlag; fetch note for punkte for notenvorschlag and pruefungsnote if certain config is set; added debounce helper file/function; WIP persisting punkte in backend

This commit is contained in:
Johann Hoffmann
2026-02-02 17:07:16 +01:00
parent 390a3c0d5a
commit 81eee814e9
6 changed files with 179 additions and 63 deletions
+8 -1
View File
@@ -76,5 +76,12 @@ export default {
url: '/api/frontend/v1/Noten/savePruefungenBulk',
params: { lv_id, sem_kurzbz, pruefungen }
};
},
getNoteByPunkte(punkte, lv_id, sem_kurzbz) {
return {
method: 'post',
url: '/api/frontend/v1/Noten/getNoteByPunkte',
params: { punkte, lv_id, sem_kurzbz }
};
}
};
}