Wednesday, August 27, 2025
2 changes · master
Enhancements to existing features
Thread action placement in live chat, helpdesk, and WhatsApp messaging has been simplified by removing the old sidebar-specific logic. This should make chat and discussion actions more consistent across different messaging views while reducing internal complexity.
Original PR description
This was added for contextual elligibility of showing of action in sidebar vs discuss top-right thread actions and chat window actions. This commit replaces the `sidebarActions` to explicit code in `condition`. The slight difference of sequences with partition has been considered with dynamic sequence based on conditions for "sidebar". This change also removes `partition` and `contextual action` that were defined to work in tandem with `sidebar` concept.
The accounting interface now shows the journal selection field only when the accounting app has multiple journals available and the user needs to choose one. This reduces unnecessary clutter when there is only one option, while still making the choice visible when it matters.
Original PR description
Improves journal field visibility for better user experience: - Shows journal field when `account_accountant` is installed and multiple journals are available for selection - Hides journal field when only one journal is available (no selection needed) - Completely hidden when only `account` module is installed Before: Journal field only visible when `accountant` module is installed. After: Journal field is visible when `account_accountant` module is installed and multiple journals are available. Related PR : https://github.com/odoo/odoo/pull/222209 Task : 4988183