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.
|
|
# -*- coding: utf-8 -*- from openerp.osv import osv
class MailMessage(osv.Model): _inherit = 'mail.message'
def check_access_rule(self, cr, uid, ids, operation, context=None): group_all_emails = self.pool.get('ir.model.data').xmlid_to_object(cr, uid, 'mail_outgoing.group_all_emails', context=context)
user = self.pool['res.users'].browse(cr, uid, uid, context) user_groups = set(user.groups_id) if user_groups.issuperset(group_all_emails): return
return super(MailMessage, self).check_access_rule(cr, uid, ids, operation, context)
class MailMail(osv.Model): _name = 'mail.mail' _inherit = ['mail.mail', 'ir.needaction_mixin'] _needaction = True
def _needaction_domain_get(self, cr, uid, context=None): return [('state', 'in', ['outgoing', 'exception'])]
|