Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
8324 Vizualizări

track_visibility on One2many or Many2many doesn't seem to work, can someone confirm this?

Looking through the odoo source code (grep on track_visibility) I can only see examples of  any2one fields, which works fine when I use it myself.

class Example(models.Model):
_name = 'my.example'
_inherit = ['mail.thread']
works = fields.Many2one('my.works', track_visibility='onchange')
dontwork = fields.Many2many('my.dontwork', track_visibility='onchange')


Imagine profil
Abandonează

which odoo version ?

with odoo 11 sir?

I have same problem

Did yo find a solution ?

Cel mai bun răspuns

Hello,

If you want to add the tracking message for one2many field in chatter then you can also use the message_post method.

Imagine profil
Abandonează