Thursday, November 4, 2021
3 changes · master
Resolved issues and error corrections
The forum question page now handles visits from helpdesk tickets correctly, so the back button returns users to the related ticket instead of sending them to the app switcher or showing the wrong navigation. This reduces confusion for support teams moving between helpdesk and forum content.
Original PR description
purpose of this commit is to remove the back button of the forum page when the user opens the question from helpdesk ticket before this commit, the back button displays on the forum page when the user opens the question from the helpdesk ticket. Task-2602604 Related: odoo/enterprise#21219
The Project app now shows the project update button only once instead of duplicating it. This reduces visual clutter and prevents confusion for users managing project updates.
Original PR description
Prior to this fix:
The project update stat button is duplicated.
After this fix:
The project update stat button is no more duplicated.
task-2684233
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThis fixes a display issue in the grid view where updated timesheet totals briefly appeared and then reverted to the previous value after selecting a cell. It helps users trust that the totals they see after entering time in days remain accurate and up to date.
Original PR description
Steps to reproduce: https://drive.google.com/file/d/1STB44wxVxkBCn-V4uIVMnI3TY7xJmj4R/view go to timesheets > settings > change the encoding unit to 'days' go to the 'all timesheets' menu and encode a few timesheets Observed behavior: when clicking on a cell, the new total is quickly displayed and then is reset to the previous value clicking on another cell makes the new total appear again Expected behavior: the new total should remain displayed after clicking on a cell This PR aims at having comprehensive tests to mimic the erratic behavior of the web_grid observed above. The tests are expected to fail but any fix brought to web_grid will hopefully fix them task-2522612