Thursday, November 6, 2025
4 changes · 18.0
Resolved issues and error corrections
The account reports info popover now uses a lighter text color in dark mode, making the formula easier to read. This improves usability for users who inspect report details in debug mode.
Original PR description
When using the dark mode, the popover available only in debug mode on the account reports (when pressing the info button on the right of each line) used to display the formula with a dark color, making it hard to read. Forward-Port-Of: odoo/enterprise#98905
This update corrects how candidate contact records are named when an email address contains capital letters. It ensures the contact name uses the candidate’s entered name instead of accidentally showing the email address, improving the accuracy and readability of recruitment records.
Original PR description
Issue: In this issue, applicant's partner's name is not set correctly, if email contains capital letter. To reproduce: 1- Create a db with hr_recruitment installed. 2- In Recruitment app, create an…
Issue: In this issue, applicant's partner's name is not set correctly, if email contains capital letter. To reproduce: 1- Create a db with hr_recruitment installed. 2- In Recruitment app, create an application with a capital letter in email address 3- Navigate to contact's form. As you see the display name is set as the email. 4- If you do the same with a lower case email, the display name is set as the name filled in application form Cause: Inside `partner_id.find_or_create` the email is normalized: https://github.com/odoo/odoo/blob/88043b84f7a017dfff790deeb64510fc62698c96/addons/mail/models/res_partner.py#L89-L94 And it is used as the partner's name. Here it is desired if the name is same as email, then we set the partner's name to candidate.partner_name: https://github.com/odoo/odoo/blob/88043b84f7a017dfff790deeb64510fc62698c96/addons/hr_recruitment/models/hr_candidate.py#L119-L121 However, if the email_from is not normalized intially, the condition will not be taken. As a result the name will remain as email. opw-5162490
Web notifications no longer show the raw URL when someone mentions a user or channel in a message. This makes notifications cleaner and avoids confusing or distracting link text for recipients.
Original PR description
BACKPORT Before this commit: When a user mentioned a channel or another user in a message, the web notification displayed the mention URL on the recipient’s side, causing a UI issue. After this commit: This commit resolves the issue by hiding the mention URL in web notification when a user mentions a channel or another user in a message. original-commit: 116b9d78ae74b6cd4884e62ba1eefe6af328d148 Forward-Port-Of: odoo/odoo#226337
When a guest joins a meeting from the welcome page and changes their name, the updated name now appears right away in the meeting member list. This makes participant lists more accurate and avoids confusion for meeting hosts.
Original PR description
**Steps to Reproduce:** - Login with Admin, start a meeting, open the member list. - Join the meeting with a guest, using the invite link. - Change the guest name from the welcome page. - Admin member list doesn't show updated guest name. **Current behavior before PR:** Before this PR, the guest appeared as `Guest` in the member list even after updating their name on the welcome page. **Desired behavior after PR is merged:** This PR ensures the guest name is updated and displayed instantly upon joining, providing a smoother and more consistent experience. task-[5062702](https://www.odoo.com/odoo/project/1519/tasks/5062702) --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr