Monday, August 16, 2021
6 changes · master
Enhancements to existing features
The event agenda page now uses a wider layout so schedules with many columns fit more comfortably. This makes it easier for visitors to view complex agendas without cramped content or excessive wrapping.
Original PR description
Agenda can have a lot of columns, it works much better in a fluid container. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Website theme recommendations now better handle preview images, helping users see more accurate visuals when choosing a theme. This makes theme selection clearer and reduces confusion during website setup.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Odoo now includes each field's name directly inside its description, making field information easier to use without relying on a separate lookup key. This is a small internal improvement that helps developers and tools work with model metadata more conveniently.
Original PR description
The fields dict maps field names to their description. Before this commit, the field name wasn't specified in the description, meaning that we could never manipulate the field description without its key, which would often be convenient.
This update makes it easier to trace serial numbers and lots through deliveries, repairs, and manufacturing use. Users can see related deliveries, repair orders, recent delivery addresses, and report origins, helping teams follow products and contact affected customers more efficiently.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Inter-warehouse transfers now automatically show the correct warehouse address as the source or destination contact. This makes transfer documents and delivery slips clearer and avoids showing an unrelated product responsible person as the contact.
Original PR description
when we have wh1 resupply form wh2, two transfers will be created. One delivery from wh2 to transit location, one receipt from transit location to wh1. Both transders don't have receive from/deviver to. In this commit, we set the corresponding warehouse address as receive from/deliver to. Task 2334764 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Manufacturing bills of materials can now apply variant-specific rules not only to component lines, but also to operations and by-products. This helps businesses define cleaner manufacturing processes for product variants, reducing manual adjustments and improving production accuracy.
Original PR description
On BoM, a component line can be filter out depending of the product variant to manufacture (with "Apply on Variant" field). Extend this feature to operation and byproduct line. task-2614126