Products & Inventory
Product catalog, variants, pricing, and warehouse management.
Overview
The Products module provides a complete inventory management system with multi-variant support, warehousing, and merchant configuration.
Core Entities
Product
| Field | Type | Description |
|---|---|---|
name | string | Product name |
code | string | SKU / product code |
description | string | Product description |
enabled | boolean | Active/inactive |
categoryId | UUID | Product category |
typeId | UUID | Product type |
imageUrl | string | Primary image |
variants | ProductVariant[] | Size/color variants |
Product Variant
| Field | Type | Description |
|---|---|---|
quantity | number | Stock quantity |
billingInvoicingPolicy | enum | Ordered / Delivered |
internalReference | string | Internal SKU |
enabled | boolean | Variant active |
prices | VariantPrice[] | Multi-currency prices |
options | ProductOption[] | Variant attributes |
Product Category
Hierarchical categorization:
Electronics
├── Laptops
│ ├── Gaming
│ └── Business
└── Accessories
├── Keyboards
└── Monitors