Daily updates from Odoo
Friday, May 6, 2022
3 changes
Resolved issues and error corrections
The spreadsheet right-click option to view related records now appears when list formulas are written in lowercase. It is also hidden when the list cell contains an error, preventing users from opening an invalid record view.
This fixes an installation error in Field Service when demo data is not included. The module no longer depends on sample project stages, making setup more reliable for production databases.
Original PR description
Since https://github.com/odoo/enterprise/pull/25080, installing the module without demo data caused a traceback. This is because stages from the demo data of project were used in industry_fsm data.
Spreadsheet pivot formulas now work correctly when a pivot is grouped by a selection field. This prevents formula errors and makes inserted pivot tables more reliable for users analyzing categorized data.
Original PR description
Group a pivot by any selection field and insert the pivot in the spreadsheet. => Formulas with this field are in #ERROR The field value (a string) is parsed as a number instead of a string The code is refactored to make it more easily testable I think we would go a bit further and "push" the "raw" string values parsing up, such that the minimum amount of code needs to handle that. Task 2841206