Add more services

This commit is contained in:
Urtzi Alfaro
2025-08-21 20:28:14 +02:00
parent d6fd53e461
commit c6dd6fd1de
85 changed files with 17842 additions and 1828 deletions

View File

@@ -119,6 +119,10 @@ app.include_router(suppliers.router, prefix=settings.API_V1_STR)
app.include_router(purchase_orders.router, prefix=settings.API_V1_STR)
app.include_router(deliveries.router, prefix=settings.API_V1_STR)
# Include enhanced performance tracking router
from app.api.performance import router as performance_router
app.include_router(performance_router, prefix=settings.API_V1_STR)
# Root endpoint
@app.get("/")
@@ -153,7 +157,16 @@ async def service_info():
"price_list_management",
"invoice_tracking",
"supplier_ratings",
"procurement_workflow"
"procurement_workflow",
"performance_tracking",
"performance_analytics",
"supplier_scorecards",
"performance_alerts",
"business_model_detection",
"dashboard_analytics",
"cost_optimization",
"risk_assessment",
"benchmarking"
]
}