64 lines
1.9 KiB
Python
64 lines
1.9 KiB
Python
{
|
|
'name': 'Fusion Accounting AI',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Accounting/Accounting',
|
|
'sequence': 25,
|
|
'summary': 'AI Accounting Co-Pilot with conversational interface and automated analysis',
|
|
'description': """
|
|
Fusion Accounting AI
|
|
====================
|
|
An AI-powered accounting co-pilot that embeds Claude/GPT into the Odoo Accounting
|
|
module. Features conversational bank reconciliation, HST management, AR/AP analysis,
|
|
audit scanning, and a comprehensive dashboard.
|
|
|
|
Built by Nexa Systems Inc.
|
|
""",
|
|
'icon': '/fusion_accounting/static/description/icon.png',
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://nexasystems.ca',
|
|
'support': 'support@nexasystems.ca',
|
|
'maintainer': 'Nexa Systems Inc.',
|
|
'depends': [
|
|
'account',
|
|
'account_accountant',
|
|
'account_reports',
|
|
'account_followup',
|
|
'mail',
|
|
],
|
|
'external_dependencies': {
|
|
'python': ['anthropic', 'openai'],
|
|
},
|
|
'data': [
|
|
# Security
|
|
'security/security.xml',
|
|
'security/ir.model.access.csv',
|
|
# Data
|
|
'data/cron.xml',
|
|
'data/tool_definitions.xml',
|
|
'data/default_rules.xml',
|
|
# Views
|
|
'views/config_views.xml',
|
|
'views/session_views.xml',
|
|
'views/match_history_views.xml',
|
|
'views/rule_views.xml',
|
|
'views/dashboard_views.xml',
|
|
'views/vendor_tax_profile_views.xml',
|
|
'views/recurring_pattern_views.xml',
|
|
'views/menus.xml',
|
|
# Wizards
|
|
'wizards/rule_wizard.xml',
|
|
# Reports
|
|
'report/audit_report_template.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'OPL-1',
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'fusion_accounting/static/src/**/*.js',
|
|
'fusion_accounting/static/src/**/*.xml',
|
|
'fusion_accounting/static/src/**/*.scss',
|
|
],
|
|
},
|
|
}
|