Daily updates from Odoo
Sunday, February 22, 2026
7 changes
1 change
Resolved issues and error corrections
This update resolves a technical issue within the Odoo Enterprise tax reporting module (l10n_co_dian) that could cause data to be reset. The fix ensures that key data elements are properly maintained, preventing disruptions to tax reporting processes. This improves the reliability of tax calculations and reporting.
Original PR description
task-5500236 Forward-Port-Of: odoo/enterprise#108227
3 changes
Resolved issues and error corrections
This update corrects a potential issue in the Odoo Enterprise accounting for Colombia (l10n_co_dian) module. Specifically, it ensures that certain data related to Dian's tax requirements (cufe/cude) is properly handled, preventing unexpected resets and maintaining accurate financial reporting. This resolves a technical problem that could have impacted data integrity.
Original PR description
task-5500236 Forward-Port-Of: odoo/enterprise#108228
This update resolves a technical issue that prevented emails from being sent correctly when processing multiple equity transactions. The fix corrects a configuration error in the email template, ensuring accurate record matching and preventing errors during email generation. This improves the reliability of equity transaction email notifications.
Original PR description
## Issue Before This Commit A missing record error occurred during email generation when the number of `equity.transaction` records exceeded the `res.partner` records. ## Cause of the Issue The issue was caused by an incorrect `model_id` configuration in the `equity_shareholder_email_template`. This created a mismatch between the template model and the record context passed to the mail compose wizard, leading to a missing record error during template rendering. ## With This Commit The template `model_id` has been corrected `equity.transaction`. This ensures that the mail compose wizard receives the correct model context and prevents missing record errors during email generation. Steps to reproduce : [Video](https://drive.google.com/file/d/19WXbjmYPKh0IjQHcEGU4FdUbGSF4GGlx/view?usp=drive_link) opw-5899070 Forward-Port-Of: odoo/enterprise#107891
This update corrects a rounding issue in the calculation of the private car daily allowance within the Odoo Enterprise payroll system. The change ensures that all figures are displayed with two decimal places, improving the accuracy and reliability of reported payroll data. This update primarily affects the Belgian payroll module.
2 changes
Resolved issues and error corrections
This update resolves an issue where helpdesk users with limited access were unable to view tickets due to a restriction in accessing related stock records. The fix adds a security group to the ticket field, allowing users to correctly read the necessary information and access tickets without errors.
Original PR description
To reproduce: ============= - install helpdesk_stock - with user having only User rights on helpdesk and nothing on other modules - try to access a ticket -> AccessError Problem: ======== when reading the ticket, the field `suitable_product_ids` is computed, and it requires read access to records the user doesn't have access to, which raises an AccessError. Solution: ========= Add the group `stock.group_stock_user` to the field, so that only users having access can read it. backport of https://github.com/odoo/enterprise/pull/59605 opw-5907657 Forward-Port-Of: odoo/enterprise#107291
This update fixes a visual issue where empty group headers were appearing in grouped reports, creating a cluttered and confusing user experience. The change ensures that group headers are only displayed when a group name is actually present, resulting in a cleaner and more professional report layout.
Original PR description
Reason: The grouped_view_widget renders a header row even when group_name is empty, creating unnecessary empty header rows in the UI. Fix: Add t-if condition to only render the header row when group_name exists. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
1 change
Resolved issues and error corrections
This update fixes a layout issue on the MRP production form that caused the quantity field to overlap on smaller screens, making it difficult to read on mobile devices. The changes implement responsive design principles to ensure quantity information remains clear and accessible across all screen sizes. This improves the user experience for all users.
Original PR description
Responsive layout prevent product_qty field overlap on small screens The quantity section in MRP production form view has responsive layout issues where product_qty field gets overlapped by product_uom_id field when the screen is resized to smaller widths. This makes quantity information unreadable on mobile devices and narrow browser windows. Video: https://github.com/user-attachments/assets/5448c65e-c744-47f5-8760-0da4c6d149ea --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr