Adds a TransientModel wizard fusion.xlsx.export.wizard that lets users pick a report type, date range, and comparison mode, then runs the engine and produces an XLSX via xlsxwriter (in-memory). The wizard exposes a download field that becomes available after export finishes. Works on P&L, Balance Sheet, Trial Balance, and General Ledger. Comparison columns are written when the engine returns a comparison_period in the result. Also wires the controller's /fusion/reports/export_xlsx endpoint to drive the wizard and return base64-encoded XLSX bytes (replaces the not_implemented placeholder). Tests: 2 new (test_xlsx_export.py) + 1 controller test updated. Manifest declares xlsxwriter as an external_dependency. Made-with: Cursor
23 lines
792 B
Python
23 lines
792 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
|
|
from . import test_reports_adapter
|
|
from . import test_fusion_report_tools
|
|
from . import test_engine_property
|
|
from . import test_pnl_integration
|
|
from . import test_bs_tb_integration
|
|
from . import test_account_balance_mv
|
|
from . import test_cron
|
|
from . import test_pdf_export
|
|
from . import test_xlsx_export
|