Daily updates from Odoo
Friday, October 18, 2024
3 changes
2 changes
Enhancements to existing features
Projects created from helpdesk teams will now have the Documents feature turned off by default. This keeps new helpdesk-related projects simpler and avoids enabling document management unless the business chooses to use it.
Original PR description
_*= helpdesk_sale_timesheet Currently, the 'documents' feature is enabled by default on the projects created from the helpdesk team. This commit ensures that the 'documents' feature is disabled by default on projects created from helpdesk teams. task-3996664
Timesheet grid configuration now supports specifying the right display widget directly instead of relying on a workaround. This helps prevent future warning messages and keeps the timesheet interface more reliable as validation is tightened.
Original PR description
Until now, if a widget needed to be specified for the renderer, a hack was needed, the widget needed to be set as a field type. The task 4224192 aim to add a warning when using a widget on a wrong field (field type) and the current hack will raise the warning. This commit adds widget, a new parameter, to the getPropertyFieldInfo function. This parameter, will allow specifying the widget that we want to use on the fieldInfo. task-id: 4224192
1 change
Enhancements to existing features
Odoo can now control how long on-screen notifications stay visible before disappearing automatically. This helps teams tailor messages so important notices remain visible longer while routine alerts can clear faster.
Original PR description
In this commit, we introduce a way to customize the duration it takes for a notification to automatically disappear which is achieved by specifying `autocloseDelay` option in ms. Documentation: https://github.com/odoo/documentation/pull/11219