Hi,
I have this
key = [a, b, c, d, e, f]
I want to put these values in my one2many field. The Problem is that I need to add it like this:
all_attributes.write({'value_ids': [[0, 0, {'name': key}]]})
I get an error and only 1 value is setting inside that one2many field.
How can I add there 10 rows if my key has every loop an other value inside?