Daily updates from Odoo
Friday, March 15, 2024
2 changes
1 change
Code cleanup and technical improvements
This update refactors the stock account module to make it easier to manage inventory ownership checks. Previously, changes to ownership required extensive modifications; now, it's simpler to add new features and customizations related to inventory valuation based on owner. This improves the system's adaptability and future development.
Original PR description
This PR adds a refactoring of the owner_id check within the stock_account module. The purpose of this refactoring is to prepare for a custom module that will value inventory based on specific ownership. This refactoring allows for extending to the functions as needed. @qrtl Forward-Port-Of: odoo/odoo#157614 Forward-Port-Of: odoo/odoo#155694
1 change
Code cleanup and technical improvements
The grid and Gantt views were updated to use a newer internal display mechanism. This prepares these views for upcoming work while keeping the visible user experience essentially unchanged.
Original PR description
The hook useVirtual has been replaced by a new hook useVirtualGrid. We adapt the GridRenderer and the GanttRenderer to that change. This is done in preparation of task `3601456`. Co-authored-by: Bruno Boi <boi@odoo.com> Co-authored-by: Mathieu Duckerts-Antoine <dam@odoo.com>