actindo ->bill__set_set_bill_properties
actindo -> bill__set_set_bill_properties: Set set properties for bill (Im Beleg Zusatzfelder setzen)
Signaturstring bill__set_set_bill_properties( string $sid, int $bill_id, string $data )
 
Parameter
  • string $sid
    Session identier you got from auth__login or auth__token_login
     
  • int $bill_id
    Bill-ID of the bill you want to set the set properties for
     
  • string $data
    array(
     
Returnsstring
array('ok' => TRUE/FALSE)
 
DescriptionSet set properties for bill (Im Beleg Zusatzfelder setzen)

Description of set_properties
$field_id: Internal field-id as it is saved in DB and returned in get_defined_bill_properties
$field_value: Value the user entered into this field; if $field_type=='combobox': the value
property of one of the $field_values

Usage Example:
$sid = $soap->auth__login('test', 'test', 10000, 'NOID');
$res = $soap->bill__set_set_bill_properties($sid, 1234, array(
id => 1
field_type => 'combobox',
field_value_combobox => 1,
));