This website works better with JavaScript.
首頁
探索
說明
登入
anoopmb
/
frappe
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
[fix] Not able to export general ledger report's data in excel
version-14
Rohit Waghchaure
7 年之前
父節點
defcd5b92b
當前提交
05808554a0
共有
1 個文件被更改
,包括
4 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
frappe/utils/xlsxutils.py
+ 4
- 0
frappe/utils/xlsxutils.py
查看文件
@@ -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…
取消
儲存