[MERGE] crm : bug fix 726455

bzr revid: tfr@openerp.com-20110302095850-7pxb1lq32fj87lku
This commit is contained in:
Thibault Francois 2011-03-02 10:58:50 +01:00
commit d492e36d36
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class crm_send_new_email(osv.osv_memory):
'subject': fields.char('Subject', size=512, required=True),
'body': fields.text('Message Body', required=True),
'state': fields.selection(AVAILABLE_STATES, string='Set New State To', required=True),
'attachment_ids' : fields.one2many('crm.send.mail.attachment', 'wizard_id'),
'attachment_ids' : fields.one2many('crm.send.mail.attachment', 'wizard_id', 'Attachment'),
'html': fields.boolean('HTML formatting?', help="Select this if you want to send email with HTML formatting."),
}