Wednesday, April 3, 2024
3 changes · saas-17.2
Resolved issues and error corrections
This fixes how sample data appears in grid views so placeholder records have the correct background and opacity. Users can more clearly distinguish sample content from real records, improving readability when previewing empty or demo grid views.
Original PR description
The background for the sample data has been removed in the following commit, thus it's not visible in the grid, and the opacity of the record exceeds that of the view. Additionally, the 'o-sample-data-disabled' class is not set in the grid view and also is applied in another view like Kanban. We have set the 'o-sample-data-disabled' class in the grid view in this commit Effect commit: This commit resolves the issue with the background display of sample data in the grid view, ensuring that the background is now visible and properly. this commit is the refactoring of the content helper and sample data behavior- https://github.com/odoo/odoo/commit/05819e8b4a4ebcb68f085353cd299303619cdbf0 task-3764514
Fixes a display issue in the spreadsheet pivot properties panel where the add-dimension input did not use the full available width. This makes configuring pivot tables clearer and easier for users working with sales order spreadsheets.
Original PR description
Steps to reproduce - install 'sale_mrp' - insert in a spreadsheet a pivot of Sale Orders - open the pivot properties side panel - click on the Add button => the input width does not spans the entire width Task: 3827265
Bank statement reports now show the latest running balance correctly when balances are grouped. This prevents misleading totals in accounting views and helps finance teams rely on the displayed cash position.
Original PR description
Since https://github.com/odoo/odoo/pull/127353, the web client only asks for the aggregatable field, making the read_group override of 'account.bank.statement.line' becomes ineffective. Remove the check done on fields, and always return the latest running_balance by group. https://github.com/odoo/enterprise/pull/59936