Monday, October 16, 2023
9 changes · master
Resolved issues and error corrections
Live chat conversations now show the configured live chat user name instead of the agent's real account name. This keeps customer-facing chats consistent with the intended display identity and avoids exposing internal names.
Original PR description
Before this commit, the real user name was shown instead of the live chat user name. This PR corrects this behavior.
Portal users editing shared project tasks will no longer see image, video, or file insertion options that they cannot use. This avoids confusing access error messages and keeps the editing experience focused on actions available to them.
Original PR description
Steps: - Install project. - Create a project and it's task. - Share this project to portal user with editable rights. - Open that project from portal user. - In task description, using `/image`, add one image. Issue: - There comes an Access error: Sorry, you are not allowed to access this document. Solution: - We are passing `'allowCommandImage': false, 'allowCommandVideo': false, 'allowCommandFile': false}` so that portal user can't have the /image and related options. task-3463461
This update corrects a small wording issue in the HR settings by changing an awkward label related to “working.” It improves clarity for users configuring HR options without changing any functionality.
Original PR description
--- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes the file path used to load the TikTok icon font in the web interface. The correction helps ensure the icon displays properly instead of failing to load due to an incorrect location.
Original PR description
This updates the relative url of the 'woff' font that was one parent too far. Bug introduced in [1] [1] : https://github.com/odoo/odoo/commit/47c5a092196054359d82edbc79dea0caf213dd9f task-3477965
This update corrects layout problems in the Studio home menu after recent menu structure changes. It helps keep the interface usable and visually consistent for users working in Odoo Studio.
Original PR description
Commit[1] introduced some changes to the studio home menu to fix some layout and usability. These changes were applied on Master via a forward-port, but since the structure of the home studio menu changed, we need to modify a bit the way the layout and the classes applied to the elements. Commit[1]: 92bbabd92d320af639c18348e15f5999429e4822 task-3536769
The depreciation schedule report now displays its table shading correctly, removing unwanted gray squares while keeping alternating column backgrounds for readability. The table header styling has also been restored, making the report easier to review and consistent with earlier versions.
Original PR description
In the depreciation schedule report, multiple gray squares appear as a background color in multiple cells. This commit solves the issue and restore the gray background color for one column out of two to have a better visualization. The header of the table is also fixed as a class was missing. The SCSS code was therefore useless. The result is now similar to what was rendered in odoo 15. task: 3226777
This update corrects how the Documents Spreadsheet tests simulate browser information. It helps prevent test failures and reduces the risk of spreadsheet-related features behaving incorrectly when browser details are checked.
Original PR description
This commit fixes the patch made to the browser object. Before this commit, the navigator property only has the clipboard property defined, which could cause other issues, with the code using the browser.navigator object to define some properties. It is part of the task-3275275, when the feature detection is made using browser.navigator.userAgent. A test would fail without this fix.
Fixed display issues in the main Odoo home menu and Studio home menu so app icons and edit controls appear in the right place. This improves usability and keeps automated checks aligned with the updated layout.
A test tour selector was updated after an underlying interface markup change moved the kanban view icon inside the button. This keeps the helpdesk knowledge workflow validation reliable without changing customer-facing behavior.
Original PR description
Beforer this commit, the `button.o_switch_view.oi-view-kanban` no longer finds the button because of a changes done in community version. That is, the `oi-view-kanban` class has been moved into a new `i` tag displayed inside that button. This commit changes the selector to correcly select the button expected, that is, the kanban button in views switcher to display the kanban view. task-3376776