Fix: AttributeError in OCRProcessor and refactor all relative imports to absolute

This commit is contained in:
2026-07-21 10:34:13 +08:00
parent 97d9d98b4c
commit b3f94d9034
10 changed files with 44 additions and 105 deletions
+2 -2
View File
@@ -13,8 +13,8 @@ from typing import Any, Callable, Dict, List, Optional
from app.config.settings import ConfigManager
from app.core.utils.log_utils import get_logger
from .ocr_service import OCRService
from .order_service import OrderService
from app.services.ocr_service import OCRService
from app.services.order_service import OrderService
logger = get_logger(__name__)