Adds FusionReportsController exposing: - list_available, run, drill_down - get_anomalies (with optional persistence to fusion.report.anomaly) - get_commentary (LLM cache via fusion.report.commentary, force_regenerate flag) - compare_periods (delegates to run with comparison flag) - export_pdf / export_xlsx (Phase 2 placeholders for Tasks 34/35) All endpoints use V19's type='jsonrpc' and route through fusion.report.engine - no direct ORM aggregation in the controller. 8 new HttpCase tests cover each endpoint. Total: 78 logical tests. Made-with: Cursor
14 lines
488 B
Python
14 lines
488 B
Python
from . import test_services_unit
|
|
from . import test_currency_conversion
|
|
from . import test_fusion_report
|
|
from . import test_line_resolver
|
|
from . import test_drill_down_resolver
|
|
from . import test_fusion_report_engine
|
|
from . import test_seeded_reports
|
|
from . import test_anomaly_detection
|
|
from . import test_commentary_prompt
|
|
from . import test_commentary_generator
|
|
from . import test_fusion_report_commentary
|
|
from . import test_fusion_report_anomaly
|
|
from . import test_reports_controller
|