From c4b58440d5c55f7537f0e830416c315e1f1e9a6e Mon Sep 17 00:00:00 2001 From: Karl Burkhart Date: Tue, 7 Feb 2012 10:15:53 +0000 Subject: [PATCH] =?UTF-8?q?Studiengeb=C3=BChren=20Standardwert=20f=C3=BCr?= =?UTF-8?q?=20"nicht=20bezahlt"=20gesetzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- soap/stip.soap.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/soap/stip.soap.php b/soap/stip.soap.php index 6a8fa3bcc..6faa92614 100644 --- a/soap/stip.soap.php +++ b/soap/stip.soap.php @@ -115,6 +115,9 @@ function GetStipendienbezieherStip($parameters) $studGebuehr = $konto->getStudiengebuehrGesamt($studentUID, $studSemester); // , als Dezimaltrennzeichen $studGebuehr = str_replace('.', ',', $studGebuehr); + // wenn nicht bezahlt + if($studGebuehr == "") + $studGebuehr = "0,00"; if($BezieherStip->Typ == "as" || $BezieherStip->Typ == "AS") { @@ -148,6 +151,7 @@ function GetStipendienbezieherStip($parameters) $StipBezieher->BeendigungsDatum = null; $StipBezieher->Studienbeitrag = null; $StipBezieher->Inskribiert ="j"; + $StipBezieher->OrgFormTeilCode = null; } $StipBezieherAntwort[$i] = $StipBezieher;