Move 39 documentation files from top-level docs/ into each module's docs/ folder, accessible via symlinks from docs/modules/. Create data-model.md files for 10 modules with full schema documentation. Replace originals with redirect stubs. Remove empty guide stubs. Modules migrated: tenancy, billing, loyalty, marketplace, orders, messaging, cms, catalog, inventory, hosting, prospecting. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2.5 KiB
2.5 KiB
Order Management
Order processing, fulfillment tracking, customer checkout, invoicing, and bulk order operations. Uses the payments module for checkout.
Overview
| Aspect | Detail |
|---|---|
| Code | orders |
| Classification | Optional |
| Dependencies | payments, catalog, inventory, marketplace |
| Status | Active |
Features
order_management— Order CRUD and status managementorder_bulk_actions— Bulk order operationsorder_export— Order data exportautomation_rules— Order processing automationfulfillment_tracking— Shipment and fulfillment trackingshipping_management— Shipping method configurationorder_exceptions— Order item exception handlingcustomer_checkout— Customer-facing checkoutinvoice_generation— Automatic invoice creationinvoice_pdf— PDF invoice generation
Permissions
| Permission | Description |
|---|---|
orders.view |
View orders |
orders.edit |
Edit orders |
orders.cancel |
Cancel orders |
orders.refund |
Process refunds |
Data Model
See Data Model for full entity relationships and schema.
- Order — Unified order model for direct and marketplace channels
- OrderItem — Line items with product snapshots and shipment tracking
- OrderItemException — Unmatched GTIN resolution for marketplace imports
- Invoice — Invoice records with seller/buyer snapshots
- StoreInvoiceSettings — Per-store invoice configuration and VAT settings
- CustomerOrderStats — Aggregated per-customer order statistics
API Endpoints
| Method | Path | Description |
|---|---|---|
* |
/api/v1/admin/orders/* |
Admin order management |
* |
/api/v1/admin/order-exceptions/* |
Exception management |
* |
/api/v1/store/customer-orders/* |
Store customer order views |
Configuration
No module-specific configuration.
Additional Documentation
- Data Model — Entity relationships and database schema
- Architecture — Consumer-agnostic customer architecture
- Unified Order View — Unified order schema with snapshots
- Order Item Exceptions — Exception system for unmatched products
- OMS Feature Plan — Order management system roadmap
- VAT Invoicing — VAT decision tree and invoice generation
- Stock Integration — Order-inventory synchronization