Friday, May 8, 2026
2 changes · 17.0
Resolved issues and error corrections
This update corrects a discrepancy between the General Ledger search filter in the UI and the exported data. Previously, the export didn't include all accounts returned by the search filter due to a difference in how the search was implemented. This change ensures the exported data accurately reflects the search criteria, improving data consistency and reporting accuracy.
Original PR description
When applying a search filter in the General Ledger, the lines displayed in the UI differ from the ones exported. The discrepancy comes from the fact that the UI search bar filters lines using a simple "contains" logic on the displayed line name, while the backend export relies on the account model’s `_name_search` behavior, just as in the chart of accounts. For example, searching for "40" displays the accounts 400000, 400010, and 124000 but the last one (124000) is not is in the export results. task: 5917435
This update reverts a previous change to the user signup process to ensure compatibility with existing customizations. It validates user input during signup and provides autocomplete suggestions, enhancing the user experience while preventing potential disruptions to existing workflows.
Original PR description
This reverts commit fcb80cce1c4b5a24600b061ae0520b86b6c25eff. As discussed in [1], the change may break existing customizations or workflows using non-email logins. [1]: https://github.com/odoo/odoo/pull/258967 task-6094631