Picking Operations
Pick customer orders from warehouse storage bins and prepare items for packing.
Routes:
/inventory/picking Picking Operations
The Picking module handles single-order and wave picking workflows, guiding warehouse operators through optimized travel paths to retrieve reserved stock from storage bins.
Picking Lifecycle & Business Logic
stateDiagram-v2
[*] --> Pending : Order Confirmed (Stock Allocated)
Pending --> InProgress : First Item Picked (Auto-Transition)
InProgress --> Completed : All Lines Fully Picked
InProgress --> Shortage : Partial Pick / Bin Shortage
Completed --> Packing : Staged at Packing Station
Completed --> ScanToDispatch : Direct Barcode Dispatch
1. Pick Sequencing & Path Optimization
- Aisle Travel Optimization: Pick lists are sorted sequentially by warehouse bin coordinates (
Aisle → Rack → Shelf → Position) to minimize walking distance across warehouse zones. - Bin Eligibility: The picker is directed strictly to pickable bin types (
storage,pick,bulk) whereis_unavailable = falseandis_bonded = false.
2. Auto-State Transitions & Stock Ledger
- Automatic Status Transition: When an order is in
Confirmedstate, recording the first item pick scan immediately updates the sales order state toPicking. - Perpetual Ledger Deduction: Registering a pick deducts the physical quantity from the storage bin and reclassifies it as staged on the picking cart.
3. Scan-to-Pick Barcodes & Hardware Integration
- Pick sheets and mobile scanners utilize the canonical barcode standard:
PICK:{orderId}:{lineId}:{binId}:{quantity} - Scanning the barcode validates the SKU and bin location simultaneously, preventing accidental fulfillment of incorrect items or batch lots.
4. Handling Bin Shortages
- If a storage bin contains fewer physical items than indicated:
- The operator enters the actual found count as a Partial Pick.
- The system flags a Bin Variance, prompting a cycle count adjustment.
- The unpicked balance remains open for fulfillment from an alternate bin or split dispatch.
Step-by-Step Workflows
1. Picking an Order
- Go to Inventory → Picking (
/inventory/picking). - Select an assigned sales order from the queue.
- Follow the guided sequence to the indicated bins.
- Scan the Bin Barcode and Product SKU, then confirm the Quantity Picked.
- When all lines are retrieved, click Complete Picking to transfer items to the packing station (or proceed directly to Scan-to-Dispatch).
Field Reference
| Field | Description |
|---|---|
| Sales Order | Target customer order being fulfilled. |
| Bin Location | Shelf/rack coordinate to retrieve items. |
| Quantity Required | Total allocated units requested on the sales order. |
| Quantity Picked | Confirmed physical units collected into the pick cart. |
| Barcode Payload | Encoded scan string (PICK:{orderId}:{lineId}:{binId}:{quantity}). |
| Status | Pick progress (Pending, In-Progress, Completed, Shortage). |
Field Reference & Data Dictionary
Key database fields, input parameters, and definitions associated with this workflow screen:
| Field / Parameter | Display Name | Description & Rules |
|---|---|---|
| sales_order_id | Sales Order | Customer sales order linked to this pick task. |
| bin_id | Pick Bin Location | Warehouse bin coordinate to collect items from. |
| quantity | Picked Quantity | Physical count picked and placed onto the cart. |
| state_code | Picking Status | Stage of the pick task (Pending, In-Progress, Completed, Shortage). |
| barcode_payload | Scan-to-Pick Barcode | Standard Zebra barcode encoding order, line, bin, and quantity for automated pick registration. |