Tab Anrechnungen/Exemptions

- bugfix handle overflow in textfield of Notiz
- bugfix delete: remove anrechnung_id also from lehre.tbl_anrechnung_anrechnungstatus
- redesign Notizen of Anrechnungen: header with title Lehrveranstaltungen
- add reload functionality to update count of notizen in action buttons
This commit is contained in:
ma0068
2025-07-01 14:32:33 +02:00
parent 98f1cd7465
commit c353e854e8
6 changed files with 77 additions and 8 deletions
@@ -0,0 +1,14 @@
<?php
class Anrechnunganrechnungstatus_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_anrechnung_anrechnungstatus';
$this->pk = 'anrechnungstatus_id';
}
}