Friday, November 17, 2023
3 changes · master
Enhancements to existing features
This update improves how returned serial numbers are counted in inventory, manufacturing, and repair workflows. By reducing the number of database lookups needed, it can make related product information load more efficiently without changing user-facing behavior.
Original PR description
To minimize query count to the database, rather than summing the result of multiple search_count, we "sum" the search domains into a single query. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Forum permission labels were updated to better describe what users can do with comments. This makes karma-based rights easier for administrators to understand and configure correctly.
Original PR description
Improve the following forum_forum model fields descriptions to best match their purpose: - the "karma_comment_convert_own" field: from 'Convert own answers to comments and vice versa' to 'Convert own comments to answers' - the "karma_comment_convert_all" field: from 'Convert all answers to comments and vice versa' to 'Convert all comments to answers' - the "karma_comment_unlink_own" field: from 'Unlink own comments' to 'Delete own comments' - the "karma_comment_convert_own" field: from 'Unlink all comments' to 'Delete all comments' **Task**-3476226
Spreadsheet list and pivot features now reuse formula information that was already prepared instead of recalculating it. This should slightly improve performance and responsiveness when working with spreadsheet data, with no expected change in user workflows.
Original PR description
Update o_spreadsheet library to version 17.1.0-alpha.3 The pivot/list helpers were tokenizing the cell's content when trying to find list/pivot formulas. But we can skip the tokenize call as we already have the tokens in the cell's compiledFormula. Task: 3584306