Friday, August 14, 2020
4 changes · master
Enhancements to existing features
Sample expense invoices now resize better on mobile screens instead of appearing at a fixed size. This makes the demo experience easier to view and use for people reviewing expense receipt extraction on phones or smaller devices.
Original PR description
Before this commit, the sample invoices would have fixed size and would render poorly in mobile. taskid: 2317997
The eBay status column in the product list is now hidden by default, reducing visual clutter for users who do not need it regularly. Users can still choose to show the column when they want to review eBay-related product status information.
Original PR description
Purpose of the task is to set the optional hide on ebay status in product list view. TaskID: 2309699 Related Community: https://github.com/odoo/odoo/pull/55451 Closes:12288
This update streamlines several internal checks so the system can stop processing as soon as it has enough information. It reduces unnecessary work in reports, payroll, planning, subscriptions, manufacturing, and other areas, helping improve performance without changing user-facing features.
Original PR description
Users adding files to the Documents split tool can now select PDF files only. This reduces clutter in the file picker and helps users find and add the right documents faster.
Original PR description
PURPOSE The purpose of the task is to help users for faster searching the pdf and adding it to Splittools SPECIFICATIONS it should accept only pdf files LINKS PR #12296 Task-2309062
Replace wrong usages of any(list|recordset), by any(generator) to speed up computations, avoiding list creations and/or looping twice on a recordset for nothing. any([generator]) => any(generator) any(filtered) => any(generator) Community PR: https://github.com/odoo/odoo/pull/55768