Daily updates from Odoo
Tuesday, July 4, 2023
2 changes · master
Resolved issues and error corrections
The project update view now shows the Planned stat button again in the side panel. This restores visibility of planned work information that had disappeared, helping users quickly review project forecasts as expected.
Original PR description
Before this commit since #40050, the `Planned` was no longer visible in project update because `show` property is not given in the object and so the system the button has invisible. This commit adds the property to be able to show that stat button as before in the right side panel of project update view.
Search suggestions in mail-related areas now wait briefly before requesting results, instead of sending a request for every keystroke. This reduces unnecessary network and server load while keeping channel search and mention suggestions responsive for users.
Original PR description
Before this commit, fetching suggestions (e.g. channel selector in discuss sidebar "Find or create a channel", or `@`-mentions) were performing RPCs on each user input, resulting in wasted network and server load. This commit fixes the issue by debouncing the fetching of suggestions to 0.5 sec. X-original-commit: 6770ac3 https://github.com/odoo/odoo/pull/126952