Thursday, November 16, 2023
3 changes
1 change
Resolved issues and error corrections
Approval requests now only allow selecting request owners who belong to the current company. This helps prevent assigning approvals to the wrong company’s users in multi-company setups.
Original PR description
Request owner field's domain was extended - now only users from current company can be selected. task-3497563
2 changes
Resolved issues and error corrections
When creating a new helpdesk ticket, the breadcrumb navigation was incorrectly displaying "False(#False)" instead of "New". This fix corrects the breadcrumb display by properly returning the parent method, ensuring users see the correct navigation label when creating new tickets.
Original PR description
Steps: - Install helpdesk - Open helpdesk - Go to my tickets - Create new ticket Issue: - when create new ticket breadcrumb shows "False(#False)" instead of "New". Cause: - Not returning the super method. Fix: - Create new field filtered with name running loop on that field and returning the super method. task-3478920
A bug in the Knowledge editor's /article command has been fixed. Previously, when users opened the article selection menu, both articles and templates were displayed together. This update ensures that only articles appear in the selection menu, with templates properly filtered out, providing a cleaner and more intuitive user experience.
Original PR description
When merging the models `knowledge.article` and `knowledge.article.template`, we unintentionally forgot to add a condition in the search domain of the select menu to filter out the templates from the search results. As a result, the select menu currently lists both articles and templates. This commit will simply add the missing condition in the search domain to exclude the templates from the search results. Steps to reproduce the issue: 1. Open the Knowledge editor 2. Type the /article command 3. Click on the selection menu => The select menu lists the articles and the templates. TO BE: The selection menu should only display the articles and not the templates Reference: https://github.com/odoo/enterprise/pull/48691 task-3593373