diff --git a/cis/public/bewerbung.php b/cis/public/bewerbung.php index 88bbe940f..9295a136f 100755 --- a/cis/public/bewerbung.php +++ b/cis/public/bewerbung.php @@ -479,7 +479,26 @@ else } } -$status_aufnahmeverfahren_text = ''; + $prestudent = new prestudent(); + if(!$prestudent->getPrestudenten($person_id)) + die('Konnte Prestudenten nicht laden'); + + $status_aufnahmeverfahren = false; + $status_aufnahmeverfahren_text = 'unvollständig'; + + foreach($prestudent->result as $row) + { + if($row->reihungstest_id != '') + { + $status_aufnahmeverfahren = true; + $status_aufnahmeverfahren_text = 'vollständig'; + } + + } + + + + ?> @@ -1365,7 +1384,7 @@ $studiengang = new studiengang();