actindo ->bill__get_set_bill_properties
actindo -> bill__get_set_bill_properties: Get set properties for bill (Im Beleg gesetzte Zusatzfelder für einen Beleg holen)
Signaturset_properties_return bill__get_set_bill_properties( string $sid, int $bill_id )
 
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 get the set properties for
     
Returnsset_properties_return
Properties set in bill
 
DescriptionGet set properties for bill (Im Beleg gesetzte Zusatzfelder für einen Beleg holen)

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__get_set_bill_properties( $sid, 1234 );
var_dump($res->properties);