Thursday, May 16, 2024
3 changes · saas-17.2
Resolved issues and error corrections
A configuration issue in the Manufacturing dashboard was corrected so the dashboard definition is valid. This helps ensure the dashboard loads and behaves reliably after stricter checks exposed the existing problem.
Original PR description
The definition on the dashboard was wrong since its creation but the error was only highlighted since https://github.com/odoo/odoo/pull/154370. Task-3911582
This update adjusts an internal enterprise webclient test to match a recent change in how browser navigation history is handled. It helps keep automated checks reliable and does not change day-to-day user behavior.
Original PR description
Previously the router did not touch the history state when mounting the webclient if the urls were identical, but now it will instead replace the state. Some asserts have been adapted to reflect this behavior. Community: https://github.com/odoo/odoo/pull/160525
Spreadsheet formula suggestions now include the required date grouping, such as day or month, when users insert pivot data. This prevents formulas from failing because a suggested date field was missing its granularity.
Original PR description
Steps to reproduce:
- Go to CRM lead pivot view
- group by any date field by day
- insert in spreadsheet
- start typing '=odoo.pivot(1, <measure>, '
=> Currently, when the auto-complete proposes a date field (e.g. "create_date"), the field is proposed without the granularity ("create_date", not "create_date:month").
The formula result is an error if the granularity is missing.
Task: 3823433