56 lines
1.9 KiB
Python
56 lines
1.9 KiB
Python
{
|
|
'name': 'Fusion Accounting Reports',
|
|
'version': '19.0.1.0.24',
|
|
'category': 'Accounting/Accounting',
|
|
'summary': 'AI-augmented financial reports (P&L, balance sheet, trial balance, GL).',
|
|
'description': """
|
|
Fusion Accounting Reports
|
|
=========================
|
|
|
|
A Fusion-native replacement for Odoo Enterprise's account_reports module.
|
|
|
|
CORE scope (Phase 2):
|
|
- Income Statement (P&L)
|
|
- Balance Sheet
|
|
- Trial Balance
|
|
- General Ledger (with drill-down)
|
|
|
|
AI augmentation:
|
|
- Anomaly detection (variance vs prior period)
|
|
- AI commentary (LLM-generated narrative)
|
|
|
|
Coexists with Enterprise: when account_reports is installed, the Fusion
|
|
menu hides; the engine and AI tools remain available for the chat.
|
|
""",
|
|
'author': 'Fusion Accounting',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'fusion_accounting_core',
|
|
'fusion_accounting_ai',
|
|
'account',
|
|
],
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'data/report_pnl.xml',
|
|
'data/report_balance_sheet.xml',
|
|
'data/report_trial_balance.xml',
|
|
'data/report_general_ledger.xml',
|
|
'data/cron.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'fusion_accounting_reports/static/src/scss/_variables.scss',
|
|
'fusion_accounting_reports/static/src/scss/reports.scss',
|
|
'fusion_accounting_reports/static/src/scss/dark_mode.scss',
|
|
'fusion_accounting_reports/static/src/services/reports_service.js',
|
|
'fusion_accounting_reports/static/src/views/report_viewer/report_viewer.js',
|
|
'fusion_accounting_reports/static/src/views/report_viewer/report_viewer.xml',
|
|
'fusion_accounting_reports/static/src/views/report_viewer/report_viewer_view.js',
|
|
],
|
|
},
|
|
'installable': True,
|
|
'auto_install': False,
|
|
'application': False,
|
|
'icon': '/fusion_accounting_reports/static/description/icon.png',
|
|
}
|