Saturday, July 18, 2026
2 changes · saas-18.4
Resolved issues and error corrections
A small typo in the cloud storage migration logic was corrected to prevent an error during attachment migration. This helps ensure the migration process runs reliably without unexpected tracebacks.
Original PR description
there is a typo in https://github.com/odoo/odoo/pull/275945 leading to a traceback. opw-6398050 Forward-Port-Of: odoo/odoo#277223
Refreshing an accounting report now clears outdated search information from the session. This prevents exported XLSX files from using an old search filter when the on-screen report shows all records, reducing confusion and mismatched report downloads.
Original PR description
**Steps to reproduce:** - Install account_reports - Open "Partner Ledger" (make sure there are several partners) - Make a search to only display 1 partner - Download XLSX - Without changing the search text, refresh the page - Download XLSX again **Issue:** After refresh, the search text is empty and all the partners are displayed in the report. However, in the XLSX file, only the partner from the previous search is present. **Cause:** The current search is kept in the session and used when getting the XLSX. When refreshing or leaving the page, it's still kept in the session even if the search bar has been reset. opw-6333212 Forward-Port-Of: odoo/enterprise#124685