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

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.

Awatar
Odrzuć
Najlepsza odpowiedź

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)


Awatar
Odrzuć
Najlepsza odpowiedź

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!

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
sty 23
10452
1
lis 17
5352
0
lis 24
111
1
sie 24
678
2
sty 24
801