Daily updates from Odoo
Sunday, May 10, 2026
1 change · saas-18.4
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