Daily updates from Odoo
Monday, September 5, 2022
1 change
Resolved issues and error corrections
A new bridge module prevents Odoo Studio components from loading in the subcontracting portal where they can cause conflicts. This helps keep the subcontracting portal stable while preserving Studio behavior elsewhere.
Original PR description
Creates a bridge module between `mrp_subcontracting` and `web_studio` to solve the incompatibilities between them. Basically the issue is : - `mrp_subcontracting` defines a webclient for the portal view. `home_menu` is removed from the asset bundle. - `home_menu` is required for `studio` and `studio_legacy` services. - Both of those services are removed from the asset bundle as well to avoid incompatibilities. - Studio now implements a patch into the `ListRenderer` that adds the `studio` service in it. So the solution provided here is to remove both the services and the patch from the asset bundle. See odoo/odoo#99013 Part of task-2885757