feat(editor): ChatExcel

ChatExcel devlop part 1
This commit is contained in:
yhjun1026
2023-08-18 10:13:55 +08:00
parent 382d2f3831
commit 76745d0e57
189 changed files with 2627 additions and 832 deletions

6
pilot/common/pd_utils.py Normal file
View File

@@ -0,0 +1,6 @@
def csv_colunm_foramt(val):
if str(val).find("$") >= 0:
return float(val.replace('$', '').replace(',', ''))
if str(val).find("¥") >= 0:
return float(val.replace('¥', '').replace(',', ''))
return val