Files
Odoo-Modules/fusion_accounting
gsinghpal 2d64f7efab docs(fusion_accounting): Phase 1 bank reconciliation design
Drafts the design for fusion_accounting_bank_rec — a native bank
reconciliation widget that replaces Odoo Enterprise account_accountant
in V19 OWL architecture, with a clean-room reconcile engine reading and
writing Community account.partial.reconcile rows.

Key design decisions captured:
- CORE scope (~5.5-6 weeks): manual + auto reconcile, write-offs,
  partial, multi-currency, chatter, model picker
- Strict mirror of all 18 Enterprise OWL units (zero functional loss)
  plus 5 fusion-only additions for AI/history visibility
- Hybrid AI badge layout: inline strip with one-click Accept plus
  expandable ranked-alternatives panel
- Behavioural learning via fusion.reconcile.pattern (per-partner) and
  fusion.reconcile.precedent (per-decision memory) with bootstrap from
  the 16,500 historical reconciliations
- Local LLM ready via OpenAI-compatible adapter base_url config and
  per-feature provider routing — works against LM Studio, Ollama, vLLM
- Statistical-mode-without-API-key as a first-class path
- Coexistence with Enterprise: Enterprise wins by default, fusion
  menu hides until uninstall, then auto-appears
- Migration wizard step bootstraps pattern memory and produces an
  audit report PDF proving every reconciliation preserved
- TDD on engine algorithms with Hypothesis property-based tests for
  amount invariants; migration round-trip integration test

Builds on Phase 0 (commit c450bb2, range pre-phase-0..phase-0-complete).

Made-with: Cursor
2026-04-19 09:27:52 -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.