You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
434 B

  1. # -*- coding: utf-8 -*-
  2. # License AGPL-3: Antiun Ingenieria S.L. - Antonio Espinosa
  3. # See README.rst file on addon root folder for more details
  4. from openerp import models, fields
  5. class MailMailStatistics(models.Model):
  6. _inherit = 'mail.mail.statistics'
  7. email_from = fields.Char(string='From', readonly=True)
  8. email_to = fields.Char(string='To', readonly=True)
  9. subject = fields.Char(string='Subject', readonly=True)