Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odpovědi
28679 Zobrazení

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
Zrušit
Nejlepší odpověď

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
Zrušit
Nejlepší odpověď

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
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
led 23
12034
1
lis 17
6144
1
kvě 25
577
2
kvě 25
488
0
dub 25
616