Daily updates from Odoo
Saturday, August 23, 2025
3 changes
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