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.

28 lines
984 B

9 years ago
9 years ago
  1. from openerp import api, models, fields
  2. class mail_message(models.Model):
  3. _inherit = 'mail.message'
  4. @api.one
  5. @api.depends('author_id', 'notified_partner_ids')
  6. def _get_sent(self):
  7. self_sudo = self.sudo()
  8. self_sudo.sent = len(self_sudo.notified_partner_ids) > 1 or len(self_sudo.notified_partner_ids) == 1 and self_sudo.author_id and self_sudo.notified_partner_ids[0].id != self_sudo.author_id.id
  9. sent = fields.Boolean('Sent', compute=_get_sent, help='Was message sent to someone', store=True)
  10. class mail_notification(models.Model):
  11. _inherit = 'mail.notification'
  12. def _notify(self, cr, uid, message_id, **kwargs):
  13. super(mail_notification, self)._notify(cr, uid, message_id, **kwargs)
  14. self.pool['mail.message'].browse(cr, uid, message_id)._get_sent()
  15. class mail_compose_message(models.TransientModel):
  16. _inherit = 'mail.compose.message'
  17. sent = fields.Boolean('Sent', help='dummy field to fix inherit error')