From 69453bd8ae372ae98f91be8f84cd4233a857b5cb Mon Sep 17 00:00:00 2001 From: gsinghpal Date: Sun, 19 Apr 2026 20:23:47 -0400 Subject: [PATCH] feat(fusion_accounting): meta-module now installs assets sub-module Adds fusion_accounting_assets to the meta-module 'depends' so a single install of fusion_accounting brings up the full Phase 1 + 2 + 3 stack. Bumps version 19.0.1.0.2 -> 19.0.1.0.3. Made-with: Cursor --- fusion_accounting/__manifest__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/fusion_accounting/__manifest__.py b/fusion_accounting/__manifest__.py index 86723114..7e388d1f 100644 --- a/fusion_accounting/__manifest__.py +++ b/fusion_accounting/__manifest__.py @@ -1,6 +1,6 @@ { 'name': 'Fusion Accounting', - 'version': '19.0.1.0.2', + 'version': '19.0.1.0.3', '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).', @@ -15,11 +15,11 @@ Currently installs: - fusion_accounting_migration Transitional Enterprise->Fusion data migration - fusion_accounting_bank_rec AI-assisted bank reconciliation (Phase 1) - fusion_accounting_reports AI-augmented financial reports (Phase 2) +- fusion_accounting_assets AI-augmented asset management (Phase 3) Future sub-modules (added per the roadmap as each Phase ships): -- fusion_accounting_dashboard (Phase 3) +- fusion_accounting_dashboard (Phase 4) - fusion_accounting_followup (Phase 5) -- fusion_accounting_assets (Phase 6) - fusion_accounting_budget (Phase 6) Built by Nexa Systems Inc. @@ -35,6 +35,7 @@ Built by Nexa Systems Inc. 'fusion_accounting_migration', 'fusion_accounting_bank_rec', 'fusion_accounting_reports', + 'fusion_accounting_assets', ], 'data': [], 'installable': True,