Tuesday, August 27, 2024
2 changes · master
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