This commit completes the migration to a fully module-driven architecture: ## Models Migration - Moved all domain models from models/database/ to their respective modules: - tenancy: User, Admin, Vendor, Company, Platform, VendorDomain, etc. - cms: MediaFile, VendorTheme - messaging: Email, VendorEmailSettings, VendorEmailTemplate - core: AdminMenuConfig - models/database/ now only contains Base and TimestampMixin (infrastructure) ## Schemas Migration - Moved all domain schemas from models/schema/ to their respective modules: - tenancy: company, vendor, admin, team, vendor_domain - cms: media, image, vendor_theme - messaging: email - models/schema/ now only contains base.py and auth.py (infrastructure) ## Routes Migration - Moved admin routes from app/api/v1/admin/ to modules: - menu_config.py -> core module - modules.py -> tenancy module - module_config.py -> tenancy module - app/api/v1/admin/ now only aggregates auto-discovered module routes ## Menu System - Implemented module-driven menu system with MenuDiscoveryService - Extended FrontendType enum: PLATFORM, ADMIN, VENDOR, STOREFRONT - Added MenuItemDefinition and MenuSectionDefinition dataclasses - Each module now defines its own menu items in definition.py - MenuService integrates with MenuDiscoveryService for template rendering ## Documentation - Updated docs/architecture/models-structure.md - Updated docs/architecture/menu-management.md - Updated architecture validation rules for new exceptions ## Architecture Validation - Updated MOD-019 rule to allow base.py in models/schema/ - Created core module exceptions.py and schemas/ directory - All validation errors resolved (only warnings remain) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
120 lines
3.9 KiB
Python
120 lines
3.9 KiB
Python
# app/modules/orders/definition.py
|
|
"""
|
|
Orders module definition.
|
|
|
|
Defines the orders module including its features, menu items,
|
|
route configurations, and self-contained module settings.
|
|
"""
|
|
|
|
from app.modules.base import MenuItemDefinition, MenuSectionDefinition, ModuleDefinition
|
|
from app.modules.enums import FrontendType
|
|
|
|
|
|
def _get_admin_router():
|
|
"""Lazy import of admin router to avoid circular imports."""
|
|
from app.modules.orders.routes.admin import admin_router
|
|
|
|
return admin_router
|
|
|
|
|
|
def _get_vendor_router():
|
|
"""Lazy import of vendor router to avoid circular imports."""
|
|
from app.modules.orders.routes.vendor import vendor_router
|
|
|
|
return vendor_router
|
|
|
|
|
|
# Orders module definition
|
|
orders_module = ModuleDefinition(
|
|
code="orders",
|
|
name="Order Management",
|
|
description=(
|
|
"Order processing, fulfillment tracking, customer checkout, "
|
|
"invoicing, and bulk order operations. Uses the payments module for checkout."
|
|
),
|
|
version="1.0.0",
|
|
requires=["payments"], # Depends on payments module for checkout
|
|
features=[
|
|
"order_management", # Basic order CRUD
|
|
"order_bulk_actions", # Bulk status updates
|
|
"order_export", # Export orders to CSV/Excel
|
|
"automation_rules", # Order automation rules
|
|
"fulfillment_tracking", # Shipping and tracking
|
|
"shipping_management", # Carrier integration
|
|
"order_exceptions", # Order item exception handling
|
|
"customer_checkout", # Customer checkout flow
|
|
"invoice_generation", # Invoice creation
|
|
"invoice_pdf", # PDF invoice generation
|
|
],
|
|
menu_items={
|
|
FrontendType.ADMIN: [
|
|
"orders", # Platform-wide order management
|
|
],
|
|
FrontendType.VENDOR: [
|
|
"orders", # Vendor order management
|
|
],
|
|
},
|
|
# New module-driven menu definitions
|
|
menus={
|
|
FrontendType.ADMIN: [
|
|
MenuSectionDefinition(
|
|
id="vendorOps",
|
|
label_key="orders.menu.vendor_operations",
|
|
icon="clipboard-list",
|
|
order=40,
|
|
items=[
|
|
MenuItemDefinition(
|
|
id="orders",
|
|
label_key="orders.menu.orders",
|
|
icon="clipboard-list",
|
|
route="/admin/orders",
|
|
order=40,
|
|
),
|
|
],
|
|
),
|
|
],
|
|
FrontendType.VENDOR: [
|
|
MenuSectionDefinition(
|
|
id="sales",
|
|
label_key="orders.menu.sales_orders",
|
|
icon="document-text",
|
|
order=20,
|
|
items=[
|
|
MenuItemDefinition(
|
|
id="orders",
|
|
label_key="orders.menu.orders",
|
|
icon="document-text",
|
|
route="/vendor/{vendor_code}/orders",
|
|
order=10,
|
|
is_mandatory=True,
|
|
),
|
|
],
|
|
),
|
|
],
|
|
},
|
|
is_core=False,
|
|
# =========================================================================
|
|
# Self-Contained Module Configuration
|
|
# =========================================================================
|
|
is_self_contained=True,
|
|
services_path="app.modules.orders.services",
|
|
models_path="app.modules.orders.models",
|
|
schemas_path="app.modules.orders.schemas",
|
|
exceptions_path="app.modules.orders.exceptions",
|
|
)
|
|
|
|
|
|
def get_orders_module_with_routers() -> ModuleDefinition:
|
|
"""
|
|
Get orders module with routers attached.
|
|
|
|
This function attaches the routers lazily to avoid circular imports
|
|
during module initialization.
|
|
"""
|
|
orders_module.admin_router = _get_admin_router()
|
|
orders_module.vendor_router = _get_vendor_router()
|
|
return orders_module
|
|
|
|
|
|
__all__ = ["orders_module", "get_orders_module_with_routers"]
|