Daily updates from Odoo
Saturday, August 23, 2025
5 changes
Enhancements to existing features
Barcode stock cards now show and highlight more consistently during manufacturing and planned transfers, making it easier for users to see which stock item is being used. The update also reduces confusion by hiding irrelevant destination location details for manufacturing operations and automatically selecting the relevant reserved stock card when possible.
Original PR description
*: barcode, barcode_mrp With this commit ================ - Fixed visibility of quant kanban cards for manufacturing operation types. - Hide the destination location field in the product form view of stock barcode for manufacturing operations. - Implemented CSS styling to highlight the selected kanban card, providing clearer visual feedback to the user. - Quant Cards can be selected if any of the following groups is enabled storage locations, lot/sn, packages, consignment. - Automatically select the quant card associated with a planned transfer by default, indicating the originating quant from which it was reserved. - If any of the move line data is updated manually, if a matching quant exists, its kanban card will be dynamically highlighted. Task: 4551050
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
Newly created subscription-related tasks now take their recurrence settings from the selected task template instead of the sales subscription. This reduces manual edits for users and helps keep recurring field service or project tasks consistent with predefined templates.
Original PR description
Before: ------- Task recurrence values were set based on the sale subscription. After: ----- Task recurrence values are automatically fetched from the task template. Impact: ----- Users no longer need to manually edit the task recurrence values on newly created tasks.this reduces manual effort and saves time. task-4369824
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