refactor: update module imports to use module locations

Update all module files to import from canonical module locations
instead of legacy re-export files:
- checkout, orders, customers routes: use module schemas
- catalog, marketplace schemas: use inventory module schemas
- marketplace, customers, inventory, analytics services: use module models

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 08:35:01 +01:00
parent 88a4184564
commit d48dc85d5f
72 changed files with 69 additions and 13 deletions

View File

@@ -0,0 +1 @@
{}

View File

@@ -0,0 +1 @@
{}

View File

@@ -0,0 +1 @@
{}

View File

@@ -0,0 +1 @@
{}

View File

@@ -0,0 +1,4 @@
# Routes will be migrated here from legacy locations
# TODO: Move actual route implementations from app/api/v1/
__all__ = []

View File

@@ -0,0 +1,4 @@
# Page routes will be added here
# TODO: Add HTML page routes for admin/vendor dashboards
__all__ = []

View File

@@ -14,7 +14,7 @@ from sqlalchemy.orm import Session
from app.exceptions import OrderNotFoundException, ProductNotFoundException
from app.modules.inventory.models.inventory import Inventory
from app.modules.inventory.models.inventory_transaction import InventoryTransaction
from models.database.order import Order
from app.modules.orders.models import Order
from models.database.product import Product
logger = logging.getLogger(__name__)

View File