Daily updates from Odoo
Wednesday, May 8, 2019
7 changes · master
Enhancements to existing features
The tooltip for the sequence implementation setting has been updated to better explain the “no gap” option. This helps users choose the right numbering behavior and reduces confusion during configuration.
Original PR description
**Description of the issue/feature this PR addresses**:
- Task: https://www.odoo.com/web#id=1973967&action=333&active_id=1278&model=project.task&view_type=form&menu_id=4720
- Pad: https://pad.odoo.com/p/r.0f17b5b7ad4cde587899e5d409056205
**Description:**
-customers were misunderstanding the concept of "no gap" sequence implementation hence updated the tooltip of the same to make it more useful and clearer.
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThe sales reinvoicing process now uses Odoo's standard rounding-safe number handling. This reduces the risk of small calculation discrepancies when preparing reinvoices, helping invoices stay accurate and consistent.
Original PR description
Comparing float is a sensitive matter. Odoo creates specific tools to manipulate float values. This commit makes the reinvoicing flow use those tools to avoid rounding mistakes, .... Task-1962608 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
Work order screens now open in the view that best matches how users access them. Selecting a work order from a list opens the standard form view, while kanban cards continue to open the tablet-friendly view, reducing navigation friction for manufacturing teams.
Original PR description
task id: https://www.odoo.com/web#id=1911218&action=333&active_id=131&model=project.task&view_type=form&menu_id=4720 pad : https://pad.odoo.com/p/r.3a3f14115b773d27584e673ef8a84e62 Open form view instead of tablet view of work order from the list view.
Resolved issues and error corrections
This update fixes a typo in the inventory module. The change improves clarity in the affected wording without changing how the system works.
Original PR description
Description of the issue/feature this PR addresses: Fixed Typo Current behavior before PR: Desired behavior after PR is merged: Followup on e3b8fe202401e7a11938329373d94d7b60794088 https://github.com/odoo/odoo/blob/e3b8fe202401e7a11938329373d94d7b60794088/addons/stock/wizard/stock_change_product_qty.py#L13 Cc: @tde-banana-odoo -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The manufacturing planning action is now shown only when the Work Orders feature is enabled. This prevents users from seeing an option that is not relevant or usable in their current manufacturing setup.
Original PR description
Description of the issue/feature this PR addresses: Mrp Plan Orders action still displays when the 'work order' feature is inactive Current behavior before PR: Mrp Plan Orders action still displays when the 'work order' feature is inactive Desired behavior after PR is merged: Mrp Plan Orders action will display only when the 'work order' feature is inactive Issue: https://www.odoo.com/web#id=1945291&action=327&model=project.task&view_type=form&menu_id=4720 Pad: https://pad.odoo.com/p/r.f829ad2e538176d2ec08d99b1d4b0f98 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Web Studio was updated to work correctly with Odoo’s newer approach to loading related data in the background. This helps keep export-related behavior reliable as the platform’s data handling is modernized.
The subscription dashboard now translates labels when they are actually used, rather than during server startup. This helps avoid translation loading issues for workers and improves reliability for multilingual subscription reporting.
Original PR description
Instead of loading translations when the code is evaluated (at server/worker initialisation), turn the global variable into a lambda function. Execute the method (which translates the record at the time of evaluation). No longer call the _ method on a variable (which can't be parsed by babel) Master fix for odoo/enterprise#3663