Daily updates from Odoo
Monday, April 28, 2025
1 change · master
Code cleanup and technical improvements
IoT action confirmations are now handled through a more general confirmation message instead of being limited to print confirmations. This makes it easier for different connected devices and sessions to confirm operations reliably while keeping messages tied to the right session.
Original PR description
Before this commit, the only action confirmation available through websocket was `print_confirmation`. This message has been generalized to allow listening for every action confirmation (now `operation_confirmation`). The recipient will be able to filter messages by `session_id` in order to get those from its session. Community PR: [https://github.com/odoo/odoo/pull/206903](https://github.com/odoo/odoo/pull/206903)