mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-08 15:42:52 +00:00
Fix in email digest due to unicode change
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user