[IMP]remove html tag from body in name_get

bzr revid: vme@tinyerp.com-20130419094938-1bmd3vu30cxsdyqd
This commit is contained in:
Vidhin Mehta 2013-04-19 15:19:38 +05:30
parent dc42de0f39
commit 75d69f5c8d
1 changed files with 14 additions and 2 deletions

View File

@ -121,14 +121,26 @@ class mail_message(osv.Model):
def name_get(self, cr, uid, ids, context=None):
# name_get may receive int id instead of an id list
from HTMLParser import HTMLParser
class MLStripper(HTMLParser):
def __init__(self):
self.reset()
self.fed = []
def handle_data(self, d):
self.fed.append(d)
def get_data(self):
return ''.join(self.fed)
def strip_tags(html):
s = MLStripper()
s.feed(html)
return s.get_data()
if isinstance(ids, (int, long)):
ids = [ids]
res = []
for message in self.browse(cr, uid, ids, context=context):
name = '%s: %s' % (message.subject or '', message.body or '')
name = '%s: %s' % (message.subject or '', strip_tags(message.body or '') or '')
res.append((message.id, self._shorten_name(name.lstrip(' :'))))
return res
_columns = {
'type': fields.selection([
('email', 'Email'),