Skip to Content
Menu
This question has been flagged
1 Odpoveď
3254 Zobrazenia

I added chatter to \view.users.form. Why does not it work?
AttributeError: type object 'res.users' has no attribute 'message_post'

Avatar
Zrušiť
Best Answer

You need to inherit res.users model and inherit mail.thread and mail.activity.mixin

from odoo import api, fields, models, _

class ResUsers(models.Model):
    _inherit = ["res.users", "mail.thread", "mail.activity.mixin"]
_name = "res.users"
Avatar
Zrušiť
Related Posts Replies Zobrazenia Aktivita
1
feb 25
1599
2
dec 24
2584
0
nov 24
2165
3
máj 24
4816
0
jan 25
2762