Wednesday, February 6, 2019
3 changes
Resolved issues and error corrections
Access error messages now consistently show both the readable model description and its technical model name. This makes permission issues easier to identify and resolve, especially when descriptions are translated or unclear.
Original PR description
All AccessError message don't show the same things, sometimes it is _description of model, sometime it is _name. Today it like this model.py: check_access_rule -> _description check_field_access_rights -> _description _read_from_database -> _name field.py check -> _name For developper it is better to use _name (some translate or description are unusable to understand with model is concern). @odony -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes an issue where related record lists could stay outdated after a linked record was created or edited. Users will now see changes such as new messages reflected correctly without needing extra refreshes or manual workarounds.
Original PR description
A one2many pointing to an integer field won't be invalidated if a corresponding record is created/edited This proposes a single direction dependency in this case.
The website editor no longer shows the homepage welcome prompt on every newly created page. This prevents confusing guidance from appearing in the wrong place and keeps the page creation experience clearer.
Original PR description
Every new page was being considered an empty homepage with _"Welcome to your Homepage! Let's start designing."_ shown. Now only an empty homepage shows that message. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr