This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
[fix] Not able to export general ledger report's data in excel
version-14
Rohit Waghchaure
7 years ago
parent
defcd5b92b
commit
05808554a0
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
frappe/utils/xlsxutils.py
+ 4
- 0
frappe/utils/xlsxutils.py
View File
@@ -29,6 +29,10 @@ def make_xlsx(data, sheet_name, wb=None):
value = handle_html(item)
else:
value = item
if isinstance(value, basestring):
value = value.encode('unicode_escape').decode('utf-8')
clean_row.append(value)
ws.append(clean_row)
Write
Preview
Loading…
Cancel
Save