Daily updates from Odoo
Wednesday, February 6, 2019
10 changes · master
Enhancements to existing features
Opening stock pickings is now faster when they contain many move lines. The availability check uses a quicker counting approach, reducing wait time for users in inventory workflows.
Original PR description
Description of the issue/feature this PR addresses: use search_count to fast compute when there lot of move_lines. 800 ms -> 100 ms This improve a little the speed when you open a picking. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update makes manufacturing order processing return the created production records, which can help other batch operations continue working with those results. It is a small internal improvement that supports smoother automation in manufacturing workflows.
Original PR description
can be help full when use in batch @jco-odoo Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change corrects or improves a text label in the Mail activity area. It helps users see clearer wording in the interface without changing business processes or functionality.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change makes an existing web interface component available for broader reuse. It helps developers build or customize related-record fields more consistently without changing the experience for end users.
Original PR description
Expose to public the variable FieldX2Many. Task ID: [1910385](https://www.odoo.com/web#id=1910385&action=333&active_id=1520&model=project.task&view_type=form&menu_id=4720)
Survey-related sample data was updated to stay compatible with recent changes in the core survey model. This helps keep appraisal survey examples working correctly after changes to how survey pages, questions, scoring, and certification data are represented.
Original PR description
Task #1902306 Community PR #29577 Purpose ======= Update data to fit the model changes made in community.
Several accounting configuration and form screens were adjusted to make labels clearer and avoid display issues. These small usability improvements help finance users better understand settings and navigate accounting records with less confusion.
Original PR description
Task : https://www.odoo.com/web#id=40157&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad : https://pad.odoo.com/p/r.ce7e9384c5fffa227d7ed5cb9cf5c22c
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
Code cleanup and technical improvements
Odoo Studio's editor was updated to align with a core platform change and avoid loading an unnecessary JavaScript file while editing. This is an internal cleanup that should help keep the editor lighter without changing day-to-day functionality for users.
Original PR description
Adaptation to odoo/odoo#29999