Browse Source

fix: 修复 xslx 提交数字类型报错

pull/6124/head
ibuler 4 years ago committed by 老广
parent
commit
726fd94f65
  1. 2
      apps/common/drf/parsers/base.py

2
apps/common/drf/parsers/base.py

@ -57,6 +57,8 @@ class BaseFileParser(BaseParser):
@staticmethod
def _replace_chinese_quote(s):
if not isinstance(s, str):
return s
trans_table = str.maketrans({
'': '"',
'': '"',

Loading…
Cancel
Save