Skip to Content
Menú
This question has been flagged
2 Respostes
28680 Vistes

Technically speaking I want to use the method responsible of posting messages on the discussion thread, existing below every form on openerp. 

How can I do this simple message post. Like when the object changes his status, the change is recorded on the discussion thread, to keep trace.

I searched on the mail module, especially on the mail_thread.py, I found the method : message_post, is this the methos I'm looking for ? Hope someone did it before me, so he can show me quickly how it can be done properly.

Thanks.

Avatar
Descartar
Best Answer

Here the code below can guide you;

from odoo import fields, models, ....

class Anything(models.Model):

    _name = 'model.name'
    _inherit = ['mail.thread', 'ir.needaction_mixin']

    @api.model
    def create(self, vals):
        res = super(Anything, self).create(vals)
        if vals:
            self.message_post(body=body, res)
        return res


   ####### FOR BUTTON CLICK USE

    @api.multi
    def button_send_message(self):
            for rec in self:

            body ="Message has been approved on %s", %datetime.datetime.now()
            rec.message_post(body=body)


Avatar
Descartar
Best Answer

Hi, please find below an example of posting the message as you requested:

self.message_post(cr, uid, this.id, body=("My custom message with dynamic text: %s") % (my_dynamic_text), context=context)

where 'this' is the browse object of the current record you want to post the message for.

This works if your class inherits the messaging behaviour, as you suggested in your question.
I hope this helps!

Avatar
Descartar
Related Posts Respostes Vistes Activitat
1
de gen. 23
12034
1
de nov. 17
6145
1
de maig 25
577
2
de maig 25
494
0
d’abr. 25
616