Daily updates from Odoo
Sunday, March 1, 2026
3 changes
1 change
Resolved issues and error corrections
This update fixes a visual inconsistency in the Activity view by ensuring that resource avatars are displayed with the same formatting as in the Kanban view. This improves the user experience and makes the Activity view more visually aligned with other parts of the Odoo system. It's a minor fix that enhances clarity and consistency.
Original PR description
This commit adds `activity.many2many_avatar_resource` in the registry to be able to have the same render than kanban view in the activity view. task-5921961 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 an issue where users couldn't download attachments sent via mass emails (like event invitations). The fix ensures attachments are correctly linked to the related event record, granting the necessary access for download. This improves the user experience when receiving and managing event communications.
Original PR description
**Steps to reproduce:** - Install Event app - Log as a user with Events/Administrator rights - Ensure its Administration rights are not set to Settings - Go to an open Event - Add a new attendee with mail - Ticket is automatically sent, and logged in chatter - User doesn't have the rights to download the file from the chatter **Issue:** User has no 'read' access to `ir.attachment` due to a missing related record (res_model and res_id are set to "mail.message" and 0 instead of the `event.registration` record). It can be bypassed when the user also has system rights (or is the sender) and it works properly when sending manually the mail. **Fix:** Reapply the fix used in 19.0+. (We could also hide the attachment in chatter when it is not linked properly) related: https://github.com/odoo/odoo/commit/19c78b2585cec9473ad2d2ab9101235c45a03314 opw-5349820 Forward-Port-Of: odoo/odoo#250894 Forward-Port-Of: odoo/odoo#247346
1 change
Resolved issues and error corrections
This update ensures self-order transactions in the POS system now adhere to the same data validation rules as standard POS orders. This enhancement improves data accuracy and reliability, reducing potential errors and inconsistencies in self-service order processing.
Original PR description
This commit improves the data validation of pos self order by using the same validation as the one used for regular pos order. Forward-Port-Of: odoo/enterprise#108538