Daily updates from Odoo
Tuesday, June 30, 2026
1 change · master
Resolved issues and error corrections
This change fixes a crash that prevented the Master Production Schedule page from opening. It updates the page customization so it matches the current interface component name, restoring access to the MPS feature.
Original PR description
Issue Before This Commit: ------------------------------------------- Opening the Master Production Schedule (MPS) view caused the page to crash, preventing users from accessing the feature. Steps to…
Issue Before This Commit: ------------------------------------------- Opening the Master Production Schedule (MPS) view caused the page to crash, preventing users from accessing the feature. Steps to Reproduce: -------------------------------------- 1. Install the mrp_mps module. 2. Go to Manufacturing -> Planning -> Master Production Schedule. 3. Observe that the page crashes with the following error: Element '<xpath expr="//Dropdown/t[@t-set-slot='content']/t[node()]" position="before"> <GroupMenu items="this.env.model.data.groups[0]"/> </xpath>' cannot be located in element tree Cause of the issue: ---------------------------- The XPath override was targeting the `Dropdown` component. After the component was renamed to `SearchBarDropdown` in this [PR](https://github.com/odoo/odoo/pull/269592), the XPath no longer matched, causing the view inheritance to fail and the MPS page to crash. After This Commit: ------------------------------------ Update the XPath to target `SearchBarDropdown` instead of `Dropdown`, restoring the view inheritance and preventing the crash when opening the Master Production Schedule.