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

Description of data
$field_id: Internal field-id as it is saved in DB and returned in get_defined_pos_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_pos_properties($sid, 431, 1234, array(
id => 'internal_id'
field_type => 'combobox',
field_value_combobox => 1,
));