Administrator
2025-05-28 c62187f349fdb90fc3f525522a512af5a0a83a54
大单解析修改
1个文件已修改
4 ■■■■ 已修改文件
data_parser/transaction_big_order_parser.py 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
data_parser/transaction_big_order_parser.py
@@ -241,8 +241,8 @@
    if os.path.exists(output_path):
        print("路径已存在:", output_path)
        return
    df = __combined_df_cache.get(combined_path)
    if not df:
    df = __combined_df_cache.get(combined_path, None)
    if df is None:
        df = pd.read_csv(combined_path)
        __combined_df_cache[combined_path] = df
    df_copy = df.copy()