Saturday, October 11, 2025
1 change · 19.0
Resolved issues and error corrections
Reports now correctly show information from one-to-many fields, matching how other relationship fields are already handled. This prevents missing or poorly formatted data in generated business documents.
Original PR description
For now, `One2Many` fields are not displayed correctly in reports. This is because for other types of fields (`ManyToMany`, `ManyToOne`, etc.), there are Converter classes (`ManyToManyConverter`) `ir.qweb.field.many2many` that implement `value_to_html`. However, for `OneToMany` fields, no implementation is present. This commit adds a `OneToManyConverter`, which is essentially the same as the `ManyToMany `one. opw-5098466 Forward-Port-Of: odoo/odoo#231057 Forward-Port-Of: odoo/odoo#229289