Saturday, August 23, 2025
5 changes · master
Enhancements to existing features
VoIP call records no longer store separate provider or company details directly on each call. This streamlines call data management and reduces redundant information, helping keep records cleaner with minimal user-facing impact.
Original PR description
Task-5034202
The bank reconciliation widget now shows the complete date, including the year, when users hover over the displayed date. This makes it easier to confirm transaction timing without changing the compact day-and-month view.
Original PR description
Purpose: In bank reconciliation widget, we show only day and month but sometimes you need to know also the year. After this commit: In bank reconciliation widget, the full date(day, month and year) is displayed in a tooltip on hover on the date. task-5030460
Automatic bank reconciliation rules now keep shorter, usable names when similar rules would otherwise receive overly long shared names. Duplicate rule names are handled by adding a number in parentheses, making them easier to identify and manage.
Original PR description
In this commit: https://github.com/odoo/enterprise/commit/e9ab2ae2876970c66c41fa56de70511af24471c1 we change the way the name of automatic reco model are made. But the solution we choose are a bit naive. If the common substring is huge then the reco model is unusable. Since we are stuck with the constraint, the solution we choose is to add a number in parentheses to avoid duplicate. task-5031337 Forward-Port-Of: odoo/enterprise#92992 Forward-Port-Of: odoo/enterprise#92888
Resolved issues and error corrections
After downloading the ADEME database in ESG, users are now taken directly to the emissions factors page instead of remaining on the database page. This makes the workflow clearer and adds logging to help monitor how long ADEME data retrieval takes.
Original PR description
Steps to reproduce: - go on configuration -> databases in ESG - download the ademe database What's happening: A success message is displayed, but the user stays on the database page. What's expected: The user is redirected towards the factor emissions page Additional fix: Small addition of an extra logger in the ADEME download process to allow checking the time needed to fetch the data from the ADEME website Task [link](https://www.odoo.com/odoo/project/967/tasks/4751902) task-4751902 Forward-Port-Of: odoo/enterprise#87058
Users can now clear the partner from a bank statement line after setting an account and editing the line. This fixes a small but visible accounting workflow issue, helping prevent incorrect partner details from remaining on transactions.
Original PR description
Before this commit when doing a set account on a bank statement line, and then editing this line to remove the partner was not working. This commit will allow the user to remove the partner when editing the line. task-4984569 Forward-Port-Of: odoo/enterprise#91422