Daily updates from Odoo
Wednesday, October 9, 2024
5 changes · master
New functionality added to Odoo
A new bridge module improves how recurring subscription lines tied to timesheets calculate delivered quantities. This helps ensure invoices only include timesheet work delivered within the relevant billing period, making subscription billing more accurate.
Enhancements to existing features
Adds a balance sheet action that lets accounting users post manufacturing work in progress directly from the report. It also introduces settings for WIP and WIP overhead accounts, helping businesses keep manufacturing costs reflected more accurately in financial statements.
Original PR description
Add a button to the balance sheet report to post manufacturing WIP. task-3952348
Odoo Studio now aligns with the updated document layout introduced in the related core update. This improves the appearance of generated documents by removing unwanted bold styling for a cleaner, more consistent presentation.
Original PR description
In the community pr https://github.com/odoo/odoo/pull/154610, we added new documents layout and suppress the bold. task: 3744232
Studio exports now process export data more efficiently by using an existing database index where it matters. This should reduce waiting time during exports without changing the exported content or user workflow.
Original PR description
Since [1] an index exists on studio.export.wizard.data model but is not really useful as the slow parts of the code uses the `filtered` function instead of the `search` one. These usages have been adapted to make use of the index. Also the default order of this model has been removed as it is not needed: those records are never shown and their order does not impact the exporting feature. [1]: https://github.com/odoo/enterprise/commit/a036341e6ece154c07defe163498498c188b96b8
Users can now mark spreadsheet dashboards as favorites. Favorite dashboards appear at the top of the dashboard list, making frequently used dashboards easier and quicker to find.
Original PR description
With this commit, users can now mark dashboards as favorites. All favorite dashboards will be displayed at the top of the list, making them easier to access. Task: 3930099