Tuesday, August 27, 2024
4 changes · 17.0
Enhancements to existing features
Users can now see a caret when hovering over many-to-one and many-to-many selection fields, making it clearer that autocomplete choices are available. This improves discoverability and reduces confusion when adding related values in configuration rules.
Original PR description
Before this commit, the user was not able to see the caret icon to indicate autocomplete dropdown in many2one and many2many values. Steps to reproduce: - open documents and then navigate to actions from the configuration. - click on any action and add a rule for any many2many field. - then try to add many2many values to that rule. Observed behavior: No caret is displayed when adding the many2many values. Expected behavior: Now a caret is displayed on hover indicating a dropdown while adding many2many and many2one values. After this commit, the user will be able to see the caret icon to indicate autocomplete dropdown in many2one and many2many values. Task-3777903
The Point of Sale IoT image now includes simple shortcuts for starting, stopping, and restarting services. This makes device maintenance quicker and reduces the need for staff or support teams to use longer system commands.
Original PR description
Added start/stop/restart aliases to the IoT image to simplify the use of systemctl commands.
Odoo now generates IoT Box connection links using regular web address parameters instead of pipe separators. This makes the links more compatible with standard tools and easier to process reliably.
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/177936](https://github.com/odoo/odoo/pull/177936) Task: 4116429
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