Fix in email digest due to unicode change
This commit is contained in:
parent
fd5005567b
commit
7e13f9b4b5
@ -520,7 +520,8 @@ class DocType:
|
|||||||
currency = company.default_currency
|
currency = company.default_currency
|
||||||
|
|
||||||
def table(args):
|
def table(args):
|
||||||
if type(args['body']) == type(''):
|
table_body = ""
|
||||||
|
if isinstance(args['body'], basestring):
|
||||||
table_body = """\
|
table_body = """\
|
||||||
<tbody><tr>
|
<tbody><tr>
|
||||||
<td style='padding: 5px; font-size: 24px; \
|
<td style='padding: 5px; font-size: 24px; \
|
||||||
@ -530,7 +531,7 @@ class DocType:
|
|||||||
</td>
|
</td>
|
||||||
</tr></tbody>"""
|
</tr></tbody>"""
|
||||||
|
|
||||||
elif type(args['body'] == type([])):
|
elif isinstance(args['body'], list):
|
||||||
body_rows = []
|
body_rows = []
|
||||||
for rows in args['body']:
|
for rows in args['body']:
|
||||||
for r in rows:
|
for r in rows:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user