Wednesday, February 11, 2026
1 change · 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