Tuesday, November 28, 2023
4 changes · master
Enhancements to existing features
Spreadsheet notifications can now show different levels such as warnings, errors, information, and success messages. They can also be set to stay visible or disappear automatically, giving users clearer and more appropriate feedback in the interface.
Original PR description
This commit improves the notifications that can be sent to the user interface in three ways 1 - change responsibilities Spreadsheet has been developed so that it isn't possible to notify several times with the same message. We believe that this feature should not be general but specific to each notifying element. Technically, this means no longer using "tag" on the notifyUser payload 2 - Have different notification categories. The spreadsheet integration currently allows having only one level of notification. We would like to have several such as: - danger - warning - info - success 3 - Notify user with sticky and no sticky notifications odoo task id 3414653 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
When users edit multiple records in a list, Odoo now keeps those records selected afterward. This makes it easier to apply additional changes to the same group without manually selecting everything again.
Original PR description
Before this commit : After selecting and editing multiple records in a list view, the selected records are no longer selected. You must therefore reselect them if you want to apply a modification to them again. After this commit : The selection is not reset. We can therefore apply another modification to the same selection. task-3373140 https://github.com/odoo/enterprise/pull/51580
Users who select multiple records in a list can now keep that selection after applying a mass edit. This saves time when making several updates to the same group of records, since users no longer need to reselect them each time.
Original PR description
Before this commit : After selecting and editing multiple records in a list view, the selected records are no longer selected. You must therefore reselect them if you want to apply a modification to them again. After this commit : The selection is not reset. We can therefore apply another modification to the same selection. task-3373140 https://github.com/odoo/odoo/pull/142296
Spreadsheet notifications can now show clearer message types such as warnings, errors, information, and success messages. They can also be shown as temporary or persistent alerts, giving users better feedback at the right level of importance.
Original PR description
This commit improves the notifications that can be sent to the user interface in three ways 1 - change responsibilities Spreadsheet has been developed so that it isn't possible to notify several times with the same message. We believe that this feature should not be general but specific to each notifying element. Technically, this means no longer using "tag" on the notifyUser payload 2 - Have different notification categories. The spreadsheet integration currently allows having only one level of notification. We would like to have several such as: - danger - warning - info - success 3 - Notify user with sticky and no sticky notifications odoo task id 3414653