Daily updates from Odoo
Tuesday, August 29, 2023
3 changes
Enhancements to existing features
Sign managers now keep read-only access to the fields in signing templates, even after related documents have been signed. This prevents access issues when reviewing or managing templates that already have completed signature requests.
Original PR description
In the current security for sign, a sign manager loses read access to the sign items of a template if the template has any signed requests. This commit adds a record rule to provide readonly access to the sign items for the sign manager task-3474910
The Gantt view now highlights the current month when viewing a full year, and the current hour when viewing a day. This makes it easier for users to quickly orient themselves in planning timelines and understand where today fits in the schedule.
Original PR description
Currently, when the scale of the Gantt view is set to 'week' or 'month', the column corresponding to the current day is highlighted. This commit extends this behavior to highlight the current month when the scale of the Gantt view is set to 'year'. task-3458164
This update aligns JavaScript command names for related records with the terminology already used by Odoo's backend. It mainly improves consistency for developers maintaining Documents, spreadsheets, rentals, and planning views, with little direct impact on day-to-day users.
Original PR description
*: documents, documents_spreadsheet,sale_renting,web_gantt Before this commit, the naming convention for x2m commands is not consistent with the python ORM. After this commit, the commands use the same terminology on both side. The JavaScript side has been adapted. See: https://www.odoo.com/documentation/16.0/developer/reference/backend/orm.html?highlight=commands#odoo.fields.Command