Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
* AbstractNumberGenerator.
*
* Base class for generating sequential numbers with customizable formatting.
* This is the foundation for all number generators in the system, including
* invoices, quotes, expenses, projects, tasks, payments, and customers.
*
* Child classes must define:
* - `$type` (required): The entity type identifier (e.g., 'Invoice', 'Quote', 'Project')
* - `$groupName` (optional): Default numbering scheme name (e.g., 'Default Invoice Numbering')
*
* Features:
* - Automatic number generation with configurable padding (e.g., PRJ-0001, PRJ-0023)
Expand Down