From 9a6b27cc8bce359b0693eef12bef4e2fa1e37cd8 Mon Sep 17 00:00:00 2001 From: Karl Burkhart Date: Thu, 12 Jun 2014 09:33:33 +0000 Subject: [PATCH] =?UTF-8?q?=C3=84nderungen=20Bewerbertool=20-=20Wenn=20Stu?= =?UTF-8?q?dent=20mind=20bei=20einem=20RT=20angemeldet=20ist=20->=20vollst?= =?UTF-8?q?=C3=A4ndig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cis/public/bewerbung.php | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) 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();