refactor: rename Chinese-named Python files to English

Rename utility files to use English names for better cross-platform compatibility:
- utils/离散备料计划维护数据提取.py → utils/discrete_material_plan_extractor.py
- utils/离散备料计划维护数据清理.py → utils/discrete_material_plan_cleaner.py

Update all import statements across the codebase and documentation references.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-02-24 17:35:23 +08:00
parent 7a8a38a3b6
commit 19dfe5b09e
7 changed files with 10 additions and 10 deletions

View File

@@ -3,6 +3,6 @@
"""
from .excel_converter import ExcelConverter
from .离散备料计划维护数据提取 import DiscreteMaterialPlanExtractor
from .discrete_material_plan_extractor import DiscreteMaterialPlanExtractor
__all__ = ["ExcelConverter", "DiscreteMaterialPlanExtractor"]

View File

@@ -11,7 +11,7 @@ import os
import pandas as pd
from typing import List, Dict, Any, Optional, Set
from dataclasses import dataclass
from utils.离散备料计划维护数据提取 import DiscreteMaterialPlanExtractor
from utils.discrete_material_plan_extractor import DiscreteMaterialPlanExtractor
from db.materials_to_delete import get_all_materials_to_delete
from db.production_contract_data_dao import ProductionContractDataDAO
from db.discrete_material_plan_dao import DiscreteMaterialPlanDAO