Hi,
I've set an action trigerred when the partner status or contact (or some other contact's infos) is changing. It creates a note record containing status and extra datas. Thanks to that I can log all different changes.
I want to add the user name info. How is it possible? We have the write_uid info and I think this is the data to manage.
Here is the script I set :
if record.is_company:
records.message_post(body="Modif Nom, mobile ou état: nom=" + str(record.name) + " /mobile=" + str(record.mobile) + " / by " + str(record.write_uid))
Is there some get_name function for that?