Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
5355 Lượt xem

Currently if user send mail to project alias odoo adds message body to task or issue as a comment. How to make odoo store message body as a taks or issue description?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Try to update the function message_post of a related model. An example for project.issue:

@api.multi

    @api.returns('mail.message', lambda value: value.id)

    def message_post(self, subtype=None, **kwargs):

 self.ensure_one()

 mail_message = super(ProjectIssue, self).message_post(subtype=subtype, **kwargs)

 if kwargs.get('body'):

  if self.description:

   description = self.description + kwargs.get('body')

  else:

   description = kwargs.get('body')

  self.sudo().write({'description': description)

 return mail_message


This code would add all the messages bodies to description. You may add other conditions to restrict messages, e.g by subtype or when authors are portal

P.S. for newly created issues update the function message_new

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 4 18
3145
0
thg 2 18
89
2
thg 8 22
5166
3
thg 1 19
9272
3
thg 6 18
4731