From 8dab9b36daff432d21abff42e7fe57667e109d4b Mon Sep 17 00:00:00 2001 From: gsinghpal Date: Sun, 19 Apr 2026 14:04:35 -0400 Subject: [PATCH] feat(fusion_accounting): meta-module now installs bank_rec sub-module Phase 1 ships fusion_accounting_bank_rec; the meta now depends on it so a single click installs the full Fusion Accounting suite. Made-with: Cursor --- fusion_accounting/__manifest__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fusion_accounting/__manifest__.py b/fusion_accounting/__manifest__.py index 75c6db9e..4bd0c3e2 100644 --- a/fusion_accounting/__manifest__.py +++ b/fusion_accounting/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Fusion Accounting', - 'version': '19.0.1.0.0', + 'version': '19.0.1.0.1', 'category': 'Accounting/Accounting', 'sequence': 25, 'summary': 'Meta-module that installs the full Fusion Accounting suite (core, AI, migration; bank rec, reports, etc. as later sub-modules ship).', @@ -13,9 +13,9 @@ 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 +- fusion_accounting_bank_rec AI-assisted bank reconciliation (Phase 1) 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) @@ -33,6 +33,7 @@ Built by Nexa Systems Inc. 'fusion_accounting_core', 'fusion_accounting_ai', 'fusion_accounting_migration', + 'fusion_accounting_bank_rec', ], 'data': [], 'installable': True,