Enterprise ERP Consultant
Installation
SKILL.md
Enterprise ERP Consultant
Enterprise resource planning architecture and business domain patterns.
Core ERP Modules
1. Financial Management
// Chart of Accounts
interface Account {
code: string;
name: string;
type: 'asset' | 'liability' | 'equity' | 'revenue' | 'expense';
parentCode?: string;
balance: number;
}