We have a model with a chatter and creating records.
For all (by code) newly created records the current user is automatically set as following to the record.
How to avoid this automatic subscription behavior in Odoo14/15?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
We have a model with a chatter and creating records.
For all (by code) newly created records the current user is automatically set as following to the record.
How to avoid this automatic subscription behavior in Odoo14/15?
I added message_is_follower in create method:
self.env['mymodel'].create({
'message_is_follower': False,
....
Which was not working...
-------------------------------------
SOLUTION:
This code prevents automatic follow assignment of the current user during creating new database records.
self.env['mymodel'].with_context(mail_create_nosubscribe=True).create(vals)
Could you post a bit more of the script you tried?
When you set the properties of the record set 'message_is_follower': False
Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!
Inscreva-sePublicações relacionadas | Respostas | Visualizações | Atividade | |
---|---|---|---|---|
|
1
fev. 25
|
1311 | ||
Chatter looks weird in 18.0
Resolvido
|
|
2
dez. 24
|
2252 | |
|
0
nov. 24
|
1097 | ||
|
0
jan. 25
|
2549 | ||
Change chatter size?
Resolvido
|
|
1
out. 23
|
2681 |
During the meanwhile I figured out a solution.
When the model is being created an additional context can be used like this:
self.env['mymodel'].with_context(mail_create_nosubscribe=True).create(vals)