Daily updates from Odoo
Sunday, October 5, 2025
1 change · master
Resolved issues and error corrections
This fixes an error that could appear when users switched Odoo to Italian while working with Italian tax returns. The Submit button is now found reliably regardless of the displayed language, preventing a traceback and keeping the tax return flow usable.
Original PR description
Steps: - Install 'l10n_it_xml_export' and switch to an Italian company - Install the Italian language - In Accouting Dashboard, configure the Tax Returns - Open the Tax Returns - Make sure you have a button 'Submit', review something if necessary - Switch the language to Italian - Traceback The xpath uses `text()` to select the element but the text in views is translated so the xpath does not work in all languages except English. We remove the check on text, `@name='action_submit'` should be enough. Ticket [link](https://www.odoo.com/odoo/project.task/5106966) opw-5106966 Forward-Port-Of: odoo/enterprise#96096