Tuesday, August 27, 2024
3 changes
2 changes
Enhancements to existing features
Odoo now creates IoT Box connection links using standard web address parameters instead of pipe separators. This makes the links more compatible with common tools and reduces the risk of connection issues caused by unusual URL formatting.
Original PR description
URL generated by Odoo to connect an IoT Box used pipes to separate important data. We now use regular search params: `?param1=value1¶m2=value2`. Community PR: [https://github.com/odoo/odoo/pull/178033](https://github.com/odoo/odoo/pull/178033) Task: 4116429
Accounting-related kanban cards have been updated to use newer standard layouts and styling. This makes the views easier to maintain and keeps the user interface aligned with current Odoo conventions, with minimal visible change for end users.
Original PR description
\* = [account_asset, account_batch_payment, account_budget, account_consolidation aacount_intrastat] In this commit we have simplified the kanban arch for the account_accountant and related modules. The goal is to simplify them, make them easier to read, and use bootstrap utility classnames. - Previously, we used `kanban-box`, but now we are using `kanban-card` instead. - Deprecated `oe_kanban_global_click` and `oe_kanban_global_click_edit`. - More use of `<field/>` tags - Removed the `oe_kanban_colorpicker` class and replaced it with the `kanban_color_picker` widget. - Changed type='edit' to type='open' to open records. since version 16, records always open in edit mode by default. - `kanban_image` from rendering context, is deprecated so we use `<field name="..." widget="image"/>` instead Community pr: https://github.com/odoo/odoo/pull/177227 Task-3992107
1 change
Enhancements to existing features
This update removes an unnecessary cursor indicator that was appearing when hovering over selection fields in the sidebar and report editor areas. The cursor was creating a visually awkward effect, and this change provides a cleaner, more polished user experience when working with these interface elements.
Original PR description
This commit ensures that the caret is not displayed on hover in `RecordSelector` , `MultiRecordSelector` components when they are present in sidebars and report editors. Displaying the caret in sidebar RecordSelectors creates an awkward and visually unappealing effect. This issue arises because, in sidebars, the entire input area is a RecordAutocomplete with padding and margin. Task-3777903