mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 02:12:17 +00:00
Infocenter message Quereinsteiger Freigabe
- Orgform bezeichnung shown in german and english Infocenter Controller changes - constants for Interessent and Abgewiesener names added - removed unnecessary parameters in comments crm/Prestudent_model - fixed typo
This commit is contained in:
@@ -218,7 +218,7 @@ class Prestudent_model extends DB_Model
|
||||
|
||||
if (count($lastStatus->retval) > 0)
|
||||
{
|
||||
// get Studiengangname from Studienlan and -ordnung
|
||||
//get Studiengangname from Studienplan and -ordnung
|
||||
$studienordnung = $this->PrestudentstatusModel->getStudienordnungFromPrestudent($prestudent_id);
|
||||
if ($studienordnung->error)
|
||||
return error($studienordnung->retval);
|
||||
|
||||
@@ -19,14 +19,17 @@ class Prestudentstatus_model extends DB_Model
|
||||
public function getLastStatus($prestudent_id, $studiensemester_kurzbz = '', $status_kurzbz = '')
|
||||
{
|
||||
$query = 'SELECT tbl_prestudentstatus.*,
|
||||
bezeichnung AS studienplan_bezeichnung,
|
||||
tbl_studienplan.orgform_kurzbz as orgform,
|
||||
tbl_studienplan.bezeichnung AS studienplan_bezeichnung,
|
||||
tbl_studienplan.orgform_kurzbz AS orgform,
|
||||
sprache,
|
||||
tbl_orgform.bezeichnung_mehrsprachig AS bezeichnung_orgform,
|
||||
tbl_status.bezeichnung_mehrsprachig,
|
||||
tbl_status_grund.bezeichnung_mehrsprachig as bezeichnung_statusgrund
|
||||
FROM public.tbl_prestudentstatus LEFT JOIN lehre.tbl_studienplan USING (studienplan_id)
|
||||
tbl_status_grund.bezeichnung_mehrsprachig AS bezeichnung_statusgrund
|
||||
FROM public.tbl_prestudentstatus
|
||||
LEFT JOIN lehre.tbl_studienplan USING (studienplan_id)
|
||||
JOIN public.tbl_status USING (status_kurzbz)
|
||||
LEFT JOIN public.tbl_status_grund USING (statusgrund_id)
|
||||
LEFT JOIN bis.tbl_orgform ON tbl_studienplan.orgform_kurzbz = bis.tbl_orgform.orgform_kurzbz
|
||||
WHERE tbl_status.status_kurzbz = tbl_prestudentstatus.status_kurzbz
|
||||
AND prestudent_id = ?';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user