Tuesday, January 30, 2024
4 changes · master
Resolved issues and error corrections
Opening a live chat after the first message no longer sends an unnecessary background request to the server. This reduces needless processing and helps keep the chat experience clean without changing what users see.
Original PR description
Since [1], sending the first message in a live chat triggers a `/channel/fold` request. This route is only called when the user is known which was not the case before [1]. This occurs because the live chat service calls `chatWindowService.open` manually while this method should only be triggered by a user action. The state of the thread will automatically open its chat window without notifying the server. This PR removes the call to `chatWindowService.open` thus preventing this request to be made. [1]: https://github.com/odoo/odoo/pull/149712
This update strengthens internal checks used by Odoo's web testing tools so invalid statements are caught more reliably. It helps reduce the risk of faulty test code slipping through, improving development quality without changing user-facing behavior.
The appraisal form warning no longer includes a link that could accidentally create a new appraisal. This helps employees and HR teams avoid duplicate appraisal records and keeps the warning focused on preventing unnecessary entries.
Original PR description
we remove the link to appraisal from the form view, because if you click on it, it will create a new appraisal, and this goes against the original purpose of this warning that is to try to not create duplicate appraisals. task-3582140
The README was updated to remove outdated setup examples from an old version and fix the documentation badge so it points to the current version. This helps users and evaluators see accurate project information and avoid following obsolete setup guidance.
Original PR description
**README.md has code examples from `10.0` and wrong badge for docs** Impacted versions: - master Remove `./setup/setup-dev.py` code examples as they are obsolete since version `11.0`. Correct badge URL to show the current version.