git mv preserves history. fusion_accounting/ retains only __manifest__.py, __init__.py, CLAUDE.md, and docs/ — the meta-module shell. All Python, data, views, security, services, static, tests, wizards, report move to fusion_accounting_ai/. Manifest data list updated; security.xml move to _core deferred to Task 12. Made-with: Cursor
20 lines
766 B
Python
20 lines
766 B
Python
from .bank_reconciliation import TOOLS as BANK_RECON_TOOLS
|
|
from .hst_management import TOOLS as HST_TOOLS
|
|
from .accounts_receivable import TOOLS as AR_TOOLS
|
|
from .accounts_payable import TOOLS as AP_TOOLS
|
|
from .journal_review import TOOLS as JOURNAL_TOOLS
|
|
from .month_end import TOOLS as MONTH_END_TOOLS
|
|
from .payroll import TOOLS as PAYROLL_TOOLS
|
|
from .inventory import TOOLS as INVENTORY_TOOLS
|
|
from .adp import TOOLS as ADP_TOOLS
|
|
from .reporting import TOOLS as REPORTING_TOOLS
|
|
from .audit import TOOLS as AUDIT_TOOLS
|
|
|
|
TOOL_DISPATCH = {}
|
|
for tools_dict in [
|
|
BANK_RECON_TOOLS, HST_TOOLS, AR_TOOLS, AP_TOOLS, JOURNAL_TOOLS,
|
|
MONTH_END_TOOLS, PAYROLL_TOOLS, INVENTORY_TOOLS, ADP_TOOLS,
|
|
REPORTING_TOOLS, AUDIT_TOOLS,
|
|
]:
|
|
TOOL_DISPATCH.update(tools_dict)
|