Saturday, August 16, 2025
2 changes · saas-18.4
Resolved issues and error corrections
The document action menu now correctly shows Export and Insert in spreadsheet when users select files in kanban or list views. These actions remain hidden only while previewing a document, preserving the intended preview behavior without blocking common document workflows.
Original PR description
Issue: When clicking on the action dropdown in the kanban and list view, the actions 'Export' and 'Insert in spreadsheet' did not appear anymore. Cause: This was the result of a previous fix that aimed to hide those actions when a user is in the preview of a document. This fix unintentionally also removed them when a user is selecting documents in the kanban and list view. Solution: Adapt the initial omit fix to only hide the actions when a document is in preview. Task-4898152 Forward-Port-Of: odoo/enterprise#92433 Forward-Port-Of: odoo/enterprise#91926
Scheduled bank statement reconciliation now runs under the correct company context, preventing currency rates from being applied for the wrong company. This improves accounting accuracy in multi-company setups while keeping the underlying code cleaner and easier to maintain.
Original PR description
In this commit: https://github.com/odoo/enterprise/pull/89244/commits/788d79cea3c2d45582e16b25847c7821a6521da1 we fixed a bug where the cron would be trigger with the wrong company which impacted the currency rate. We decided to put the change in the try_auto_reconcile, but it was a bit of code duplication so this commit will refactor that. Task-4933083 Forward-Port-Of: odoo/enterprise#90305