| 1 | = [wiki:DeployerGuide Przewodnik wdrożeniowca] > Dodanie nowej sprawy = |
| 2 | |
| 3 | |
| 4 | ''' Definicja parametrów: ''' |
| 5 | {{{ |
| 6 | #!php |
| 7 | <?php |
| 8 | |
| 9 | /** |
| 10 | * Tworzy nową sprawę |
| 11 | * |
| 12 | * @param data Array - Tablica z parametrami |
| 13 | * @param data['dscrpt'] String - opis sprawy |
| 14 | * @param data['briefcase_symbol'] String - symbol teczki |
| 15 | * @param data['dsexid'] int - identyfikator teczki (doss_exctract_list:dsexid) |
| 16 | * @param data['orunid'] int - identyfikator jednostki organizacyjnej, pod którą zostanie utworzona sprawa (organization_units:orunid) |
| 17 | * @param data['rspoid'] int - identyfikator osoby odpowiedzialnej w sprawie (organization_units:orunid) |
| 18 | * @param data['prtpid'] int - identyfikator procedury (procedures_def:prtpid) |
| 19 | * @param data['comnts'] String - uwagi |
| 20 | * @param data['contact_symbol'] String - symbol kontaktu (contacts:symbol) |
| 21 | * |
| 22 | * @return Int - id sprawy jeśli sukces (processes:prc_id), 0 w razie niepowodzenia |
| 23 | * |
| 24 | * @throws Exception - SoapFault |
| 25 | */ |
| 26 | Int createProcess(Array data) |
| 27 | |
| 28 | ?> |
| 29 | }}} |
| 30 | |
| 31 | ''' Przykłady wywołań: ''' |
| 32 | {{{ |
| 33 | #!php |
| 34 | |
| 35 | // Plik MyService.php umieszczony w apps/edokumenty. |
| 36 | // MyService.php |
| 37 | <?php |
| 38 | |
| 39 | define('EDOK_API_LOGIN', 'developer'); |
| 40 | define('EDOK_API_PASSWORD', 'developer'); |
| 41 | define('DEFAULT_ENTITY_SYMBOL', 'demo'); |
| 42 | |
| 43 | require_once('./classes/eDokumentyApi/EDokApiClient.inc'); |
| 44 | |
| 45 | $options = array( |
| 46 | 'location' => 'http://{host}:{port}/eDokumentyApi.php', |
| 47 | "uri" => "eDokumentyAPI", |
| 48 | 'encoding'=>'UTF-8' |
| 49 | ); |
| 50 | |
| 51 | $client = new EDokApiClient(NULL, $options); |
| 52 | $client->setUser(EDOK_API_LOGIN); |
| 53 | $client->setPass(md5(EDOK_API_PASSWORD)); |
| 54 | $header = new SoapHeader('eDokumentyAPI', 'entity_symbol', DEFAULT_ENTITY_SYMBOL); |
| 55 | $client->__setSoapHeaders($header); |
| 56 | |
| 57 | |
| 58 | |
| 59 | ?> |
| 60 | }}} |