Browse Source
[ADD] mail_activity_type_id for mail.message
pull/204/head
Holger Brunn
7 years ago
No known key found for this signature in database
GPG Key ID: 1C9760FECA3AE18
1 changed files with
13 additions and
0 deletions
-
mail_activity/models/mail_message.py
|
|
@ -0,0 +1,13 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
# © 2017 Therp BV <http://therp.nl> |
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|
|
|
from openerp import fields, models |
|
|
|
|
|
|
|
|
|
|
|
class MailMessage(models.Model): |
|
|
|
_inherit = 'mail.message' |
|
|
|
|
|
|
|
mail_activity_type_id = fields.Many2one( |
|
|
|
'mail.activity.type', 'Mail Activity Type', index=True, |
|
|
|
ondelete='set null', |
|
|
|
) |