Projektabgabe Übersicht: added phrases

This commit is contained in:
Alexei Karpenko
2025-11-10 17:37:24 +01:00
parent 6861e26ed6
commit 91d24ebae8
4 changed files with 286 additions and 20 deletions
@@ -141,7 +141,7 @@ class PaabgabeUebersicht extends FHCAPI_Controller
$personSearchString = $this->input->get('personSearchString');
if (!isset($studiengang_kz) && !isset($abgabetyp_kurzbz) && !isset($abgabedatum) && !isset($personSearchString))
$this->terminateWithFileOutput('text/plain', $this->p->t('abgabetool', 'keineAuswahl'));
$this->terminateWithFileOutput('text/plain', $this->p->t('abgabetool', 'nichtsAusgewaehlt'));
$this->load->library('zip');
@@ -177,7 +177,7 @@ class Paabgabe_model extends DB_Model
$qry = "
SELECT
DISTINCT campus.tbl_paabgabe.datum as termin, to_char(campus.tbl_paabgabe.datum, 'DD.MM.YYYY') as termin_anzeige
DISTINCT tbl_paabgabe.datum as termin, to_char(tbl_paabgabe.datum, 'DD.MM.YYYY') as termin_anzeige
FROM
lehre.tbl_projektarbeit
JOIN campus.tbl_paabgabe USING(projektarbeit_id)