Hey there!
Let's suppose that I'm working on a system that allows the user to create a product and assign different tags for that product (as a many2many relationship - a lot of tags already exist and the user can assign as many as he wants to a specific product). I want, however, to also create a field that will make one of these assigned tags "special". I want the user to be able to select one tag among all the tags he have previously assigned to this specific product. How can I do that? so far, I've tried to create a many2one field with a "compute" function, returning all tags assigned to the product as a list of (id, tag_name) pairs, but it didn't work.
Anyone know how to do it? Thanks in advance.