Thursday, November 17, 2022
2 changes · master
Resolved issues and error corrections
This update fixes small wording and typo issues in the profiler's speed visualization support. It improves clarity for people reading or using profiler output without changing business workflows 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 update fixes missing dependency issues that could prevent certain Odoo app asset bundles from loading correctly. It adjusts manufacturing subcontracting with Studio, website helpdesk form editing, and payroll dashboard imports to keep related screens working after stricter dependency checks.
Original PR description
*: hr_payroll Since odoo modules having missing dependencies in now an error, this commit fixes some missing dependencies issues in mrp_subcontracting and in website_helpdesk. In mrp_subcontracting,…
*: hr_payroll Since odoo modules having missing dependencies in now an error, this commit fixes some missing dependencies issues in mrp_subcontracting and in website_helpdesk. In mrp_subcontracting, the mrp_subcontracting module defines a bundle that includes the assets_backend bundle but removes the files related to menu loading. These files are required by some other files added to assets_backend by web_studio. Because there already exists a bridge module, this commit removes the offending studio files from the bundle in that bridge module. In website_helpdesk, the form-editor fields are in the assets_frontend even though they depend on files defined in assets editor. While this works in practice because the form editor is only ever loaded in the frontend, and the module will be loaded when the assets_editor are loaded, there is no reason for it to not be in the assets_editor directly. The change in hr_payroll just updates an import because a file was moved in web in the community PR community: https://github.com/odoo/odoo/pull/104794