Split 49 modules/suites into independent git repos; untrack from monorepo
Some checks failed
fusion_accounting CI / test (fusion_accounting_ai) (push) Has been cancelled
fusion_accounting CI / test (fusion_accounting_core) (push) Has been cancelled
fusion_accounting CI / test (fusion_accounting_migration) (push) Has been cancelled

Each top-level module/suite folder is now its own private repo on GitHub
(gsinghpal/<name>) and gitea (admin/<name>), with a fresh single initial
commit. The monorepo no longer tracks them (added to .gitignore + git rm
--cached); working-tree files are retained on disk and managed in their
own repos. The monorepo keeps shared root files (CLAUDE.md, docs/, scripts/,
tools/, AGENTS.md, WIP/obsolete dirs) and full history.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsinghpal
2026-06-07 01:54:34 -04:00
parent 2a7b315e98
commit a66cdefc01
6740 changed files with 51 additions and 1277207 deletions

View File

@@ -1,69 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Lives under Community Accounting "Accounting" sub-menu. Only visible
when Enterprise's account_asset is absent. -->
<menuitem id="menu_fusion_assets_root"
name="Asset Management"
parent="account.menu_finance_entries"
sequence="25"
groups="fusion_accounting_core.group_fusion_show_when_enterprise_absent"/>
<!-- Asset list/form -->
<record id="action_fusion_asset_list" model="ir.actions.act_window">
<field name="name">Assets</field>
<field name="res_model">fusion.asset</field>
<field name="view_mode">list,form</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Manage your fixed assets
</p>
<p>
Track depreciation, post periodic entries, dispose assets at end-of-life.
AI augmentation: anomaly detection + suggested useful life.
</p>
</field>
</record>
<menuitem id="menu_fusion_assets_list"
name="Assets"
parent="menu_fusion_assets_root"
action="action_fusion_asset_list"
sequence="10"
groups="fusion_accounting_core.group_fusion_show_when_enterprise_absent"/>
<!-- Categories -->
<record id="action_fusion_asset_category_list" model="ir.actions.act_window">
<field name="name">Asset Categories</field>
<field name="res_model">fusion.asset.category</field>
<field name="view_mode">list,form</field>
</record>
<menuitem id="menu_fusion_asset_categories"
name="Categories"
parent="menu_fusion_assets_root"
action="action_fusion_asset_category_list"
sequence="20"
groups="fusion_accounting_core.group_fusion_show_when_enterprise_absent"/>
<!-- Anomalies -->
<record id="action_fusion_asset_anomaly_list" model="ir.actions.act_window">
<field name="name">Asset Anomalies</field>
<field name="res_model">fusion.asset.anomaly</field>
<field name="view_mode">list,form</field>
</record>
<menuitem id="menu_fusion_asset_anomalies"
name="Anomalies"
parent="menu_fusion_assets_root"
action="action_fusion_asset_anomaly_list"
sequence="30"
groups="fusion_accounting_core.group_fusion_show_when_enterprise_absent"/>
<!-- Run depreciation -->
<menuitem id="menu_fusion_assets_run_depreciation"
name="Run Depreciation..."
parent="menu_fusion_assets_root"
action="action_fusion_depreciation_run_wizard"
sequence="40"
groups="fusion_accounting_core.group_fusion_show_when_enterprise_absent"/>
</odoo>