Sunday, May 10, 2026
2 changes · saas-18.4
Enhancements to existing features
This update improves the logging shown during cloud storage migrations, making migration activity easier to understand and monitor. Better logs help teams identify progress or issues more quickly without changing the migration process itself.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#263669 Forward-Port-Of: odoo/odoo#263557
Resolved issues and error corrections
This update corrects a flaw in how Odoo retrieves online accounting transactions. Previously, users were limited to seeing transactions from the last sync date, even if a specific date range was requested. Now, the system prioritizes the user-provided start date, ensuring a more complete and accurate view of online transactions.
Original PR description
When you want to find missing transactions, you have to put a starting date. But we don't use this starting date to find the last statement line, we only use the last sync date, which is wrong, because if the last sync date is after the starting date, the online transaction identifier will have the wrong date. It means we will only fetch the transactions from last sync date to today. This commit makes sure we take the start date first if it exists, then the last sync date. task-6197277 Forward-Port-Of: odoo/enterprise#116624