Daily updates from Odoo
Sunday, July 5, 2026
1 change · master
Resolved issues and error corrections
This fixes an issue where AI-generated fields in Studio could fail when using existing form fields in a prompt. Users can now populate AI fields in appraisal forms without encountering this error.
Original PR description
**STEPS TO REPRODUCE** 1. Add an AI Studio field in the employee appraisal form view (can be a regular text field or other) 2. Add `employee_feedback` to the prompt using '/' 3. Click the AI button to populate the field 4. Error occurs: `TypeError: unsupported operand type(s) for +: 'OrderedSet' and 'list'` **CAUSE** In any model, the read function expects the argument `fields` to be a list. When using AI fields in Studio, the fields argument is stored as an OrderedSet instead of a list, causing errors when performing operations. opw-5954203 Forward-Port-Of: odoo/enterprise#121981 Forward-Port-Of: odoo/enterprise#120799