24 lines
918 B
Python
24 lines
918 B
Python
from flask import Blueprint
|
|
from .buy import inbound_buy_bp
|
|
from .semi import inbound_semi_bp
|
|
from .base import inbound_base_bp
|
|
from .product import inbound_product_bp
|
|
from .inbound_summary import bp as inbound_summary_bp
|
|
# ★ [新增] 导入 stock 模块
|
|
from .stock import bp as stock_bp
|
|
|
|
inbound_bp = Blueprint('inbound', __name__)
|
|
|
|
# 导入 service 模块以注册路由
|
|
from . import service
|
|
|
|
inbound_bp.register_blueprint(inbound_buy_bp, url_prefix='/buy')
|
|
inbound_bp.register_blueprint(inbound_semi_bp, url_prefix='/semi')
|
|
inbound_bp.register_blueprint(inbound_base_bp, url_prefix='/base')
|
|
inbound_bp.register_blueprint(inbound_product_bp, url_prefix='/product')
|
|
inbound_bp.register_blueprint(inbound_summary_bp, url_prefix='/summary')
|
|
|
|
# ★ [新增] 挂载 stock 模块,路径前缀为 /stock
|
|
# 最终访问路径例:/api/v1/inbound/stock/all
|
|
inbound_bp.register_blueprint(stock_bp, url_prefix='/stock')
|