Monday, February 9, 2026
2 changes · saas-18.4
Enhancements to existing features
The Türkiye VAT placeholder is changed from a real tax ID to a dummy value. This reduces the risk that users accidentally use a real identifier when submitting transactions.
Original PR description
The previous placeholder used a real tax ID. Replacing it with a dummy prevents users from using it to submit transactions. task-5441218 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#247454 Forward-Port-Of: odoo/odoo#242189
Newly added choices in Odoo fields can now appear in the user interface even when the related database records have not been created. This helps stable-version customizations and enterprise changes show available options immediately, reducing the need for database updates for display purposes. Translations for these new choices still require database updates.
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