feat: 도매상 API 통합 및 스키마 업데이트
- wholesale 패키지 연동 (SooinSession, GeoYoungSession) - Flask Blueprint 분리 (sooin_api.py, geoyoung_api.py) - order_context 스키마 확장 (wholesaler_id, internal_code 등) - 수인약품 개별 취소 기능 (cancel_item, restore_item) - 문서 추가: WHOLESALE_API_INTEGRATION.md - 테스트 스크립트들
This commit is contained in:
@@ -59,6 +59,15 @@ app.register_blueprint(pmr_bp)
|
||||
from paai_feedback import paai_feedback_bp
|
||||
app.register_blueprint(paai_feedback_bp)
|
||||
|
||||
from geoyoung_api import geoyoung_bp
|
||||
app.register_blueprint(geoyoung_bp)
|
||||
|
||||
from sooin_api import sooin_bp
|
||||
app.register_blueprint(sooin_bp)
|
||||
|
||||
from order_api import order_bp
|
||||
app.register_blueprint(order_bp)
|
||||
|
||||
# 데이터베이스 매니저
|
||||
db_manager = DatabaseManager()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user