Wednesday, July 24, 2024
6 changes · master
Enhancements to existing features
Odoo Studio’s report editor now supports adding and removing columns in certain report tables, making report layout customization easier. The update also fixes editable banner content and cleans up unused styling so the editor behaves more reliably.
The payroll account test module now covers a quicker login experience for people sharing the same device. The feature keeps only recent user login names and avatars in the browser, avoiding stored passwords or sessions while making repeated logins easier.
Original PR description
When several users share the same device, the login/logout process can be boring, so we added a quick login feature. For a security propose it doesn't store the session or the password of the user. No data is sent to the server, everything is stored inside the browser localStorage[1] . It only stores the login of the user and the avatar of the user for the last 5 users connected to the device. We also lightly redesign the login screen task-3953707 [1]: https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage
Asset records can now include extra distinguishing information, such as brand or other descriptive properties. This helps teams identify and manage assets more accurately with business-specific details.
Original PR description
People want to be able to add distinctive info on assets (like brand, ..) task-3996633
Mexican companies that rent spaces or land can now store a property registration number on each product. When present, this predial account is included in the invoice XML to support local compliance requirements.
Original PR description
Companies in Mexico whose primary business involves renting out spaces or land must have a "Cuenta predial" in the XML. This is the official registration number of the property with the local authority. The predial account field is added to the product's accounting settings and we have one predial account per product. When a predial account is present, it's displayed in the invoice XML. task-4033975
Resolved issues and error corrections
This fix keeps spreadsheet pivot tables working as expected after an underlying spreadsheet engine update. Users can rename measures and include the same measure more than once without side panel or autocomplete issues.
Original PR description
See https://github.com/odoo/enterprise/pull/67268#issue-2427359270
This fixes spreadsheet pivot reports so the same measure can be added more than once, including with custom names, without causing display or interaction issues. Business users get more flexible spreadsheet reporting and more reliable pivot tables when comparing the same metric in different ways.