Daily updates from Odoo
Wednesday, May 8, 2019
4 changes
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