[FIX] mail: _fields['type'].selection is a callable

This revert partially the rev. f2e4a10e1a

  File "/home/odoo/src/odoo/8.0/addons/mail/mail_mail.py", line 76, in default_get
      if context and context.get('default_type') and context.get('default_type') not in self._fields['type'].selection:
      TypeError: argument of type 'function' is not iterable
This commit is contained in:
Denis Ledoux 2014-11-07 12:34:04 +01:00
parent a674512739
commit c98e5b2d2c
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class mail_mail(osv.Model):
def default_get(self, cr, uid, fields, context=None):
# protection for `default_type` values leaking from menu action context (e.g. for invoices)
# To remove when automatic context propagation is removed in web client
if context and context.get('default_type') and context.get('default_type') not in self._fields['type'].selection:
if context and context.get('default_type') and context.get('default_type') not in self._all_columns['type'].column.selection:
context = dict(context, default_type=None)
return super(mail_mail, self).default_get(cr, uid, fields, context=context)