Thursday, February 8, 2024
2 changes · 17.0
Enhancements to existing features
List views can now be configured so clicking a read-only cell does not automatically move focus to the next editable cell. This gives teams more control over editing behavior and helps avoid unexpected cursor jumps for users.
Original PR description
When clicking on a readonly cell in a list item, the next editable cell is automatically focused if any. This adds a parameter to disable that feature.
Scheduled background jobs now carry a clear indicator that they are running automatically. This helps Odoo adapt behavior for automated tasks, such as delayed email sending, without passing extra details through many internal steps.
Original PR description
Provide a new param cron_mode=True in context when calling the method. Instead to send param from method to method, or to be able to customize code in function that doesn't receive this param. From this way we can change code depending of the way it is called. e.g. Deferred send_mail, or ...