Files
Odoo-Modules/fusion_accounting
gsinghpal fe003567a9 docs(fusion_accounting): Phase 1 bank reconciliation implementation plan
51 tasks across 17 groups covering the full Phase 1 build:

Group 1 (5 tasks): Foundation — branch, sub-module skeleton, shared
fields on _core, LLMProvider contract for local LLM readiness

Group 2 (8 tasks): Reconcile engine — TDD-layered build of
matching_strategies, exchange_diff, memo_tokenizer, precedent_lookup,
pattern_extractor, confidence_scoring 4-pass pipeline, the AbstractModel
engine with 6-method API, and Hypothesis property-based tests

Group 3 (4 tasks): Models — fusion.reconcile.pattern,
fusion.reconcile.precedent, fusion.reconcile.suggestion, widget transient,
and inherits on Community account.bank.statement.line + account.reconcile.model

Group 4-5 (6 tasks): Integration tests with SQL fixtures from real Westin
reconciles + AI prompts + adapter fill-ins + AI tools refactor

Group 6-7 (3 tasks): Materialized view, cron schedules, and 10-endpoint
JSON-RPC controller with auth guards

Group 8-10 (10 tasks): Frontend — SCSS tokens, service, kanban controllers,
all 18 Enterprise-mirror OWL components, and 5 fusion-only components
(ai_suggestion folder, batch_action_bar, attachment_strip,
partner_history_panel, reconcile_model_picker)

Group 11-13 (5 tasks): Wizards (auto-reconcile + bulk), migration wizard
inheritance with bootstrap of 16,500 historical reconciliations + audit
report PDF + round-trip test, coexistence menu/group + tests

Group 14-16 (3 tasks): 5 OWL tour tests, performance benchmarks against
P95 targets, local LLM compatibility test against LM Studio

Group 17 (4 tasks): Closeout — meta-module manifest update, sub-module
docs, end-to-end smoke test, completion tag

TDD discipline throughout: every code task is red test → impl → green
→ commit. Property-based tests for amount invariants. Migration round-
trip test asserts byte-identical reconciliation state pre/post Enterprise
uninstall. All testing on local OrbStack VM only (environment-safety
rule applies).

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