This question has been flagged
1 Reply
4059 Views

After searching over internet I've got to this point but can't go further. I guess this is the way a many2many field should be called but I can't understand neither find which field is supposed to go on the last part. Just want to add a tag to a sale order automatically.

record.write({'tag_ids': [(6, 0, ??)]})

Avatar
Discard
Best Answer
'tag_ids': [(6, 0, tag_ids)]

That's assuming that the many2many field is tag_ids


Avatar
Discard

Excuse me for asking, but how can I get the ID of a certain tag under a certain tag category to insert it above in place of tag_ids?