Daily updates from Odoo
Thursday, March 27, 2025
2 changes
Code cleanup and technical improvements
Odoo IoT now recognizes touchscreens as a dedicated type of display instead of requiring separate display and keyboard registrations. This simplifies device setup for self-ordering and other touchscreen-based workflows, reducing configuration confusion.
Original PR description
Added a new subtype 'touchscreen' for displays, to avoid registering a touchscreen using a display and a keyboard. Community PR: [https://github.com/odoo/odoo/pull/201128](https://github.com/odoo/odoo/pull/201128) Task: 4627191
The Frontdesk and Social Twitter areas now use a newer, more flexible way to show autocomplete choices. This is an internal cleanup that should preserve current behavior while making future interface changes easier.
Original PR description
\* frontdesk, social_twitter This commit removes the props `optionTemplate` from `AutoComplete` and replaces all occurence by `optionSlot`. Slots give more power than templates. If we want to use a template, we can still `t-call` it in the slot. task-4660366