Friday, May 9, 2025
6 changes · saas-18.3
Enhancements to existing features
The chatter component can now tell its parent screen to refresh when an activity is added, changed, or deleted. This helps areas such as bank reconciliation keep related record information up to date immediately after users manage activities.
Original PR description
The aim of this commit is adding a new props for the chatter component. By adding this props, the parent view will be reloaded when an activity is added, modified or deleted in the chatter. This change is necessary for the bank reconciliation widget where we want to update a specific record when a user adds a new activity in the chatter. no task id --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The HTML editor now keeps a complete record of all editor versions, including versions introduced by related modules such as Knowledge. This helps keep content upgrades consistent regardless of which optional modules are installed.
Original PR description
Any modules (most notably Knowledge) can register new html_editor versions. To ensure the version consistency no matter if the Knowledge module is installed or not, every version should be registered in the `html_editor` manifest, even if they do not apply any change in the `html_editor` itself. task-4718129
The Live Chat channel rules list now shows the related chatbot, making chatbot setup easier to review and manage. This helps teams quickly see which chatbot is tied to each rule without opening individual records.
Original PR description
Add a new chatbot field in the rule's tree view to improve visibility and management of chatbot configurations. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The bank reconciliation account search now filters by account type instead of a broader internal grouping. This prevents unrelated other income and other expense accounts from appearing, helping users choose the correct account more easily.
Original PR description
This commit will change the current filter to use account type instead of internal_group to avoid including "other income" and "other expense" task: 4749344
VoIP contact search now handles names containing joined letters such as IJ, œ, or æ when converting them for keypad dialing. This makes it easier for users to find and call contacts with international or special-character names.
Original PR description
Expand ligatures (IJ, œ, æ...) to their constituent letters, so that they can be converted to T9.
This update adds missing checks to make sure the return period filter behaves correctly in financial reports. It helps reduce the risk of reporting inconsistencies when the return period matches a standard date filter.
Original PR description
Added missing tests for the return period filter. Mainly testing the fallback to normal filter in case it is aligned to a normal date filter.