[FIX] crm, mail_gateway: fixes send reminder.

bzr revid: vra@tinyerp.com-20100728100830-9d3kpm45e7ghn3n6
This commit is contained in:
JMA(OpenERP) 2010-07-28 15:38:30 +05:30 committed by vra
parent dec54e6fd2
commit ec3827535f
2 changed files with 6 additions and 2 deletions

View File

@ -376,7 +376,10 @@ class crm_case(object):
if not destination:
src, dest = dest, src
if body and case.user_id.signature:
body += '\n\n%s' % (case.user_id.signature)
if body:
body += '\n\n%s' % (case.user_id.signature)
else:
body = '\n\n%s' % (case.user_id.signature)
body = self.format_body(body)

View File

@ -159,7 +159,8 @@ class mailgate_message(osv.osv):
msg_txt = ''
if message.history:
msg_txt += (message.email_from or '/') + ' wrote on ' + format_date_tz(message.date, tz) + ':\n\t'
msg_txt += '\n\t'.join(message.description.split('\n')[:3]) + '...'
if message.description:
msg_txt += '\n\t'.join(message.description.split('\n')[:3]) + '...'
else:
msg_txt = (message.user_id.name or '/') + ' on ' + format_date_tz(message.date, tz) + ':\n\t'
if message.name == 'Opportunity':