Daily updates from Odoo
Wednesday, October 9, 2024
6 changes · master
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
Upsell order pages now show discount information even when the discount is negative. This gives customers clearer, more consistent pricing details and improves related customer-facing notes.
Original PR description
**Before this PR:** Previously, in the upsell order portal view, if the discount was less than 0, the discount field was hidden. This led to confusion as users could not see the applied discounts. **After this PR:** This improvement enables the discount field to be visible for upsell orders even if the discount is negative. The change ensures that users have clearer information because all discounts, positive or negative, are displayed consistently. task-4033128 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The ecommerce product and checkout experience is being updated to match a refreshed page design. Renting, subscription, tax, delivery, wishlist, and localization-related checkout flows are adjusted so customers see consistent layouts and options across affected sales features.
Original PR description
This commit is part of multiple commit in the purpose of refreshing the design of the product/checkout pages of the e-commerce app. (task-3083707). ---- This commit changes the various xpath from the modified DOM element in community `website_sale/view/templates.xml` It also changes the display of renting options (price and select) to fit the new product page design.
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