[FIX] mail: fixed body, subject in default_get method in email.compose.message

bzr revid: hmo@tinyerp.com-20110406091550-i7zhkcq885w1yig6
This commit is contained in:
Harry (OpenERP) 2011-04-06 14:45:50 +05:30
parent 37a916b539
commit a1c413c98f
1 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ class email_compose_message(osv.osv_memory):
return result
if 'subject' in fields:
result.update({'subject' : vals.get('name','')})
result.update({'subject' : vals.get('subject','')})
if 'email_to' in fields:
result.update({'email_to' : vals.get('email_to','')})
@ -53,7 +53,7 @@ class email_compose_message(osv.osv_memory):
result.update({'email_from' : vals.get('email_from','')})
if 'body' in fields:
result.update({'body' : vals.get('description','')})
result.update({'body' : vals.get('body','')})
if 'model' in fields:
result.update({'model' : vals.get('model','')})
@ -183,8 +183,8 @@ class email_compose_message(osv.osv_memory):
result.update({
'email_from': vals.get('email_from',''),
'email_to': vals.get('email_to',''),
'subject': vals.get('name',''),
'body': vals.get('description',''),
'subject': vals.get('subject',''),
'body': vals.get('body',''),
'email_cc': vals.get('email_cc',''),
'email_bcc': vals.get('email_bcc',''),
'reply_to': vals.get('reply_to',''),