Wednesday, February 11, 2026
3 changes · saas-19.1
Enhancements to existing features
This update ensures that newly added selection options in Odoo fields are immediately visible in the user interface, without requiring changes to the database. Previously, these options were added to the database but not displayed. Note that translations still require a database update.
Original PR description
Previously, when developers use `selection_add` in stable versions, the new selection values could be written to the database (since `field._selection` contains them), but they would not appear in the UI due to missing `ir.model.fields.selection` records. This commit allows newly added selections to be displayed in the field description without requiring database updates. Note: the new selections still cannot be translated without database updates. mainly for enterprise https://github.com/odoo/enterprise/pull/106612 may be also helpful for https://github.com/odoo/odoo/pull/217853 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 Forward-Port-Of: odoo/odoo#247826 Forward-Port-Of: odoo/odoo#247542
This update enhances the eTransport functionality for Odoo's Romanian localization (l10n_ro_edi_stock) by improving the accuracy of XML files generated for shipping. Specifically, it now uses standard unit prices, includes necessary rounding for product values, and logs the sent XML files for tracking and troubleshooting.
Original PR description
- Adding logging of sent XML into move chatter - Adjusting the XML generator to use standard unit price - Adding rounding for product values as required by the XML structure task-5892338 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#247919 Forward-Port-Of: odoo/odoo#247541
This update enhances the chatter interface by adding a company card with details sourced from DNB. Previously, industry tags from DNB were stored separately. This change consolidates relevant partner information within the chatter for better visibility and efficiency.
Original PR description
Before: Industry tags coming from DnB were stored in the Tags section of res.partner. and there was no Company info card in chatter. After: Industry tags coming from DnB are not stored in the Tags section of res.partner. Company card is created in chatter that is having details from Dnb along with tags. task-5373200 Forward-Port-Of: odoo/odoo#239464