Files
Odoo-Modules/fusion_accounting
gsinghpal a93162cb70 feat(fusion_accounting_reports): Phase 2 skeleton + plan
46-task plan to replace Enterprise account_reports module:
- CORE scope: P&L, balance sheet, trial balance, GL with drill-down
- HYBRID engine: shared primitives + per-report models
- AI augmentation: anomaly detection + LLM-generated commentary
- Coexists with Enterprise (group_fusion_show_when_enterprise_absent)
- Same V19 conventions + test pyramid + perf-budget discipline as Phase 1

Skeleton: empty manifest + dirs + icon. Tasks 3-46 add the substance.
Made-with: Cursor
2026-04-19 15:03:03 -04:00
..

Fusion Accounting (meta-module)

One-click install of the entire Fusion Accounting suite for Odoo 19.

What it installs

  • AI Co-Pilot for accounting (Claude / GPT)
  • Native foundation (security, schema preservation)
  • Transitional Enterprise -> Fusion migration helper

As later sub-modules ship (bank rec, reports, follow-ups, assets, budgets), they're added to the meta-module's depends and installed automatically when the client upgrades fusion_accounting.

Install

docker exec odoo-dev-app odoo -d <db> -i fusion_accounting --stop-after-init

Uninstall

Uninstalling the meta-module does NOT uninstall its sub-modules (Odoo behavior). To fully remove Fusion Accounting:

docker exec odoo-dev-app odoo-shell -d <db> --no-http <<EOF
env['ir.module.module'].search([
    ('name', 'in', [
        'fusion_accounting',
        'fusion_accounting_ai',
        'fusion_accounting_migration',
        'fusion_accounting_core',
    ]),
    ('state', '=', 'installed'),
]).button_immediate_uninstall()
EOF

Documentation

See docs/superpowers/specs/ for the design and docs/superpowers/plans/ for implementation plans.