mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-16 22:42:16 +00:00
budget zum speichern hinzugekommen
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user