mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-08 15:49:28 +00:00
bff6307a62
- Neuer Job zum Setzen der Anrechnungsnote hinzugefügt - Direktes setzen der Zeugnisnote bei Anrechnung entfernt
16 lines
300 B
PHP
16 lines
300 B
PHP
<?php
|
|
class Zeugnisnote_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'lehre.tbl_zeugnisnote';
|
|
$this->pk = array('studiensemester_kurzbz', 'student_uid', 'lehrveranstaltung_id');
|
|
$this->hasSequence = false;
|
|
}
|
|
}
|