Wednesday, December 4, 2024
4 changes
2 changes
Enhancements to existing features
Payment and batch payment screens were refined to make common actions easier to find and reduce small usability friction. Batch payment creation now fills the journal automatically, labels were corrected, and an unnecessary ordering control was removed from the journal list.
Original PR description
The changes are : - spelling correction - button rearrangement - autofill of journal_id field on batch payment creation - remove the order drag & drop button on batch payment journal list view linked:https://github.com/odoo/odoo/pull/185227 task-4276813
Restart and reboot commands for IoT boxes can now use an active websocket connection when the usual local network route is unavailable. This makes device management more dependable and prepares the IoT module for future real-time communication improvements.
Original PR description
Instead of using the longpolling endpoints, use the websocket to send the reboot/restart command. This simplifies the JS code and it should be easy to add other WS functionality in the future. https://www.odoo.com/odoo/project/1428/tasks/3619591
2 changes
Enhancements to existing features
Users can now turn on video background blur from the call actions menu while they are in a call. This makes privacy and presentation controls easier to access without opening separate call or video settings.
Original PR description
**Current behavior before PR:** Blurring the background in video during a call was not possible directly from the call actions menu. Users had to navigate to the call and video settings to enable this feature. **Desired behavior after PR is merged:** New call actions have been introduced, allowing users to blur their video background directly during a call, making the feature more accessible. **Task**-4354247 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Documents app now shows cleaner kanban cards and list views, reducing clutter while keeping key actions accessible when needed. Opening or previewing documents now works with a single click, making navigation faster and more intuitive for users.
Original PR description
Improve kanban cards: - Avoid having empty spaces and optimize space - Prevent displaying too much info by only displaying some on hover. The favorite toggle, the activities widget, the "only accessible by link" icon. - Prevent displaying large urls by hiding them behind icons. Improve list view UI: - Reorder fields - Add favorite field - Give a name to the type field in the tree view fields configurator. - When it is a shortcut, display the target document icon instead of the shortcut icon. Changing the keys: - Open a folder / preview a file: single click (previously double click) - Select a folder / file: ctrl+click (previously single click) - Make a selection range: shift+click (same as previously) => It wasn't natural for users to open a folder / preview a file by double clicking. It also required a lot of clicks to navigate. Task-4294457