- Issue created by @dotsam
- πΊπΈUnited States markusa
I dug into this a bit.
I found that the civicrm api call used to retrieve the contact values from the database, does not return addressee_custom in the result.
In Core, this function determines fields to exclude:
https://github.com/civicrm/civicrm-core/blob/master/CRM/Contact/BAO/Cont...Normal CiviCRM API3 Contact.get calls are the same. So it would take something different than what we do to retrieve and populate this field.
It will work for saving a value from the /civicrm-contact/[id]/edit form, as the contact.create API accepts the value.
We could do a separate direct db query, or perhaps a DAO sql query, and then populate the values. This has been this way for a long long time, and this is the first request for it.