Files
Odoo-Modules/fusion_accounting
gsinghpal 99b6990dd6 feat(fusion_accounting_assets): Phase 3 skeleton + plan
50-task plan to replace Enterprise account_asset module:
- CORE scope: 3 depreciation methods (straight-line, declining-balance, units-of-production)
- HYBRID engine: shared primitives + persisted asset/category/disposal/anomaly models
- AI augmentation: utilization anomaly detection + LLM-suggested useful life
- Full lifecycle: draft -> running -> paused -> disposed
- Coexists with Enterprise (group_fusion_show_when_enterprise_absent)
- Same V19 conventions + test pyramid + perf-budget discipline as Phases 1-2

Skeleton: empty manifest + dirs + icon. Tasks 3-50 add the substance.
Made-with: Cursor
2026-04-19 16:43:06 -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.