Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
3324 Widoki

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

Awatar
Odrzuć
Najlepsza odpowiedź

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"
Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
lut 25
1646
2
gru 24
2667
0
lis 24
3061
3
maj 24
4894
0
sty 25
2822