Skip to content

Phase 00: Foundation & Auth

Set up the core data structures and configurations required to run the Finance module, establishing the company and financial calendar contexts.

Before we can build financial transactions, the core business application needs these foundational DocTypes:

  • Company: Represents the legal entity (or entities) for which accounts are maintained. Contains base currency and default chart of accounts template.
  • Fiscal Year: Financial year definitions (e.g., “FY 2026-27” covering Apr-Mar).
  • Accounting Period: Monthly or quarterly periods within a fiscal year, used for closing books.
  • Scaffold Company DocType in apps/business-m.
  • Scaffold FiscalYear DocType in apps/business-m.
  • Scaffold AccountingPeriod DocType in apps/business-m.
  • Create FinanceSettings in the finance library to hold default ledger mapping and Book-Keeper credentials.