Daily updates from Odoo
Navigate
Branch
Monday, March 12, 2018
4 changes
Enhancements to existing features
Odoo Studio now lets users press Enter to move forward while creating an app, making the setup flow faster and more intuitive. The Studio submenu also shows when a view is being saved or has been saved, giving users clearer feedback and more confidence that their changes are recorded.
Resolved issues and error corrections
This change prevents Website and Sales settings from conflicting over the same signup configuration field. It makes the modules rely on the correct shared component, reducing the risk of errors when related modules are installed or removed.
Original PR description
Before this commit, the website and sale modules were both redefining an existing field for mode res.config.settings, the field in question being `auth_signup_uninvited`, this is a known bug, the ORM can only assign an XMLID to the first module that registers the field, therefore whenever the module that registered the XMLID is uninstalled, all other modules who used the same XMLID will crash in one way or another. See #23171 for more details. This is fixed by simply making these two modules depend on auth_signup which is a technical module which introduces the field being redefined. Equivalent of #23181 for master Description of the issue/feature this PR addresses: Current behavior before PR: Garbage Desired behavior after PR is merged: Less garbage -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update adjusts an internal test for Mexican electronic invoicing so it no longer fails because of permission errors. It helps keep the invoicing module's automated checks reliable, reducing the risk of delays or false alarms during development.
Original PR description
Changed test `test_l10n_mx_edi_invoice_basic_33` in `_l10n_mx_edi_invoice.py ` because of access rights errors like:  
Searching helpdesk tickets by display name now works without triggering an error. This improves reliability for support teams when finding customer tickets quickly.
Original PR description
…s been resolved. Task: https://www.odoo.com/web#id=1822731&view_type=form&model=project.task&action=333&active_id=1278&menu_id=4720