跳至內容
選單
此問題已被標幟
1 回覆
7792 瀏覽次數

I have faced the following behaviour with a user that has the "handle by Odoo" set in the notifications:

- People reply to messages (typical discussion in a record's discussion area).
- The messages are logged in Odoo, the status is that they were "sent"
- The messages show in the Discussion feature (in Odoobot channel)
- The user does not get any notification concerning the arrival of the message

Getting warned is critical for the user as, otherwise, he won't be able to reply on time.

Does anyone know what might cause this?




Version: Odoo13 EE

頭像
捨棄
最佳答案

Yes .....behaviors with previous versions is changed...try something like this.

self._message_create(
body=message,
partner_ids=[self.env.user.user_manager.partner_id.id],
message_type= "notification",
subtype_id= self.env.ref("mail.mt_comment").id,
record_name= self.name,
subject= _("Message subject new"),
model= self._name,
res_id= self.id

) 


Body and partner in list is enough for sending and you will get notification

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
11月 19
5353
5
7月 25
2412
6
11月 24
7507
4
2月 24
6748
3
3月 24
3108