budget zum speichern hinzugekommen

This commit is contained in:
Karl Burkhart
2011-09-29 10:58:28 +00:00
parent 2a2305451a
commit 146c2d910d
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -50,7 +50,7 @@ ini_set("soap.wsdl_cache_enabled", "0");
* @param string $oe_kurzbz
* @param boolean $neu
*/
function saveProjekt($projekt_kurzbz, $nummer, $titel, $beschreibung, $beginn, $ende, $oe_kurzbz, $neu)
function saveProjekt($projekt_kurzbz, $nummer, $titel, $beschreibung, $beginn, $ende, $budget, $oe_kurzbz, $neu)
{
$projekt = new projekt();
@@ -60,6 +60,7 @@ function saveProjekt($projekt_kurzbz, $nummer, $titel, $beschreibung, $beginn, $
$projekt->beschreibung = $beschreibung;
$projekt->beginn = $beginn;
$projekt->ende = $ende;
$projekt->budget = $budget;
$projekt->oe_kurzbz = $oe_kurzbz;
if($neu=='true')
$projekt->new = true;
+1
View File
@@ -20,6 +20,7 @@ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
<wsdl:part name="beschreibung" type="xsd:string"></wsdl:part>
<wsdl:part name="beginn" type="xsd:string"></wsdl:part>
<wsdl:part name="ende" type="xsd:string"></wsdl:part>
<wsdl:part name="budget" type="xsd:string"></wsdl:part>
<wsdl:part name="oe_kurzbz" type="xsd:string"></wsdl:part>
<wsdl:part name="neu" type="xsd:boolean"></wsdl:part>
</wsdl:message>