Daily updates from Odoo
Monday, March 4, 2019
1 change
Enhancements to existing features
Signing-related records now show a more meaningful person-based label instead of often appearing blank or as “False.” This makes it easier for users to identify the right signing record when selecting or reviewing documents.
Original PR description
By default a module uses the field `name` for showing the value of a record in a new `Many2one` field. In this model the field name quite often results into `False` though, which tells nothing. Example that shows how often it is empty/`False`:  By setting an explicit `_rec_name` the user will get a better description for the record. @mart-e as we where discussing between chosing for the field `id` or `responsible_id`: I decided to choose for the `responsible_id`. An id doesn't say a lot and the `sign.item` is literally about who signed the document and the details about this person his details on the signing. So that made me choose for `responsible_id`.