refactor(fusion_accounting): convert to meta-module that depends on sub-modules
Made-with: Cursor
This commit is contained in:
@@ -1,4 +1 @@
|
|||||||
from . import models
|
# Meta-module: no Python code. All implementation is in sub-modules listed in __manifest__.py 'depends'.
|
||||||
from . import services
|
|
||||||
from . import controllers
|
|
||||||
from . import wizards
|
|
||||||
|
|||||||
@@ -1,63 +1,41 @@
|
|||||||
{
|
{
|
||||||
'name': 'Fusion Accounting AI',
|
'name': 'Fusion Accounting',
|
||||||
'version': '19.0.1.0.0',
|
'version': '19.0.1.0.0',
|
||||||
'category': 'Accounting/Accounting',
|
'category': 'Accounting/Accounting',
|
||||||
'sequence': 25,
|
'sequence': 25,
|
||||||
'summary': 'AI Accounting Co-Pilot with conversational interface and automated analysis',
|
'summary': 'Meta-module that installs the full Fusion Accounting suite (core, AI, migration; bank rec, reports, etc. as later sub-modules ship).',
|
||||||
'description': """
|
'description': """
|
||||||
Fusion Accounting AI
|
Fusion Accounting (Meta-Module)
|
||||||
====================
|
===============================
|
||||||
An AI-powered accounting co-pilot that embeds Claude/GPT into the Odoo Accounting
|
One-click install of the entire Fusion Accounting suite.
|
||||||
module. Features conversational bank reconciliation, HST management, AR/AP analysis,
|
|
||||||
audit scanning, and a comprehensive dashboard.
|
Currently installs:
|
||||||
|
- fusion_accounting_core Shared schema, security, runtime helpers
|
||||||
|
- fusion_accounting_ai AI Co-Pilot (Claude/GPT)
|
||||||
|
- fusion_accounting_migration Transitional Enterprise->Fusion data migration
|
||||||
|
|
||||||
|
Future sub-modules (added per the roadmap as each Phase ships):
|
||||||
|
- fusion_accounting_bank_rec (Phase 1)
|
||||||
|
- fusion_accounting_reports (Phase 2)
|
||||||
|
- fusion_accounting_dashboard (Phase 3)
|
||||||
|
- fusion_accounting_followup (Phase 5)
|
||||||
|
- fusion_accounting_assets (Phase 6)
|
||||||
|
- fusion_accounting_budget (Phase 6)
|
||||||
|
|
||||||
Built by Nexa Systems Inc.
|
Built by Nexa Systems Inc.
|
||||||
""",
|
""",
|
||||||
'icon': '/fusion_accounting/static/description/icon.png',
|
'icon': '/fusion_accounting_ai/static/description/icon.png',
|
||||||
'author': 'Nexa Systems Inc.',
|
'author': 'Nexa Systems Inc.',
|
||||||
'website': 'https://nexasystems.ca',
|
'website': 'https://nexasystems.ca',
|
||||||
'support': 'support@nexasystems.ca',
|
'support': 'support@nexasystems.ca',
|
||||||
'maintainer': 'Nexa Systems Inc.',
|
'maintainer': 'Nexa Systems Inc.',
|
||||||
'depends': [
|
'depends': [
|
||||||
'account',
|
'fusion_accounting_core',
|
||||||
'account_accountant',
|
'fusion_accounting_ai',
|
||||||
'account_reports',
|
'fusion_accounting_migration',
|
||||||
'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',
|
|
||||||
],
|
],
|
||||||
|
'data': [],
|
||||||
'installable': True,
|
'installable': True,
|
||||||
'application': False,
|
'application': True,
|
||||||
'license': 'OPL-1',
|
'license': 'OPL-1',
|
||||||
'assets': {
|
|
||||||
'web.assets_backend': [
|
|
||||||
'fusion_accounting/static/src/**/*.js',
|
|
||||||
'fusion_accounting/static/src/**/*.xml',
|
|
||||||
'fusion_accounting/static/src/**/*.scss',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user