Daily updates from Odoo
Tuesday, May 6, 2025
1 change · saas-17.2
Resolved issues and error corrections
A problem in the web testing support code was fixed so creating linked records in many-to-many relationships no longer causes errors. This improves reliability for automated checks around web features without changing day-to-day user workflows.
Original PR description
Before this commit, using CREATE Command on a many2many field would result in an error. This is because upon record creation the inverse field would be set to the single id, which is incorrect for a many2many field. This commit fixes the issue by setting the inverse field of a many2many to a list containing the new id.