Putaway Operations
Move received goods from staging areas to permanent warehouse storage bins.
Routes:
/inventory/putaway Putaway Operations
The Putaway module guides warehouse operators in transporting newly received inventory from inbound dock staging areas into optimized storage and pick bins.
Putaway Logic & Stock Availability
flowchart TD
A[Goods Received in Dock Staging Bin] --> B{Evaluate Putaway Strategy}
B --> C[1. Primary Default Pick Bin]
B --> D[2. Existing Product Storage Bin]
B --> E[3. Empty Bulk Storage Bin]
C & D & E --> F[Transport Goods & Scan Target Bin]
F --> G[Stock Activates in Available Pickable Inventory]
1. Bin Suggestion Algorithm
When generating putaway tasks, the system evaluates destination storage in priority order:
- Primary Pick Bin: If configured on the product record, goods are routed to replenish forward pick locations.
- Co-Located Inventory: Existing storage bins that already contain the same SKU to consolidate warehouse space.
- Empty Storage / Bulk Bins: Available empty bins within the product’s assigned storage zone.
2. Dock-to-Storage Stock Activation
- Staging Phase: While items reside in
dockorstagingbins, they are counted in total On Hand stock but are marked non-pickable (isPickableBin = false), preventing premature picking before placement. - Putaway Completion: Confirming putaway transfers stock into an active
storage,pick, orbulkbin, immediately increasing Available Stock for automated order allocation and picking queues.
Step-by-Step Workflows
1. Completing a Putaway Task
- Go to Inventory → Putaway (
/inventory/putaway). - Select an open task from the staging queue.
- Review the Product, Quantity, and system-suggested Target Bin.
- Transport the physical items to the designated location.
- Scan the destination Bin Barcode to verify correct placement (or select an alternate overflow bin if full).
- Click Complete Putaway to commit the stock to active inventory.
Field Reference
| Field | Description |
|---|---|
| Source Staging Bin | Inbound dock holding coordinate. |
| Product | Item SKU and description being moved. |
| Putaway Quantity | Physical count moved to the storage location. |
| Destination Bin | Verified storage bin coordinate (e.g. B-02-C1). |
Field Reference & Data Dictionary
Key database fields, input parameters, and definitions associated with this workflow screen:
| Field / Parameter | Display Name | Description & Rules |
|---|---|---|
| staging_bin_id | Source Staging Bin | Temporary dock staging coordinate where inbound goods were initially received. |
| target_bin_id | Destination Storage Bin | Target pickable warehouse bin, shelf, or rack where stock will reside. |
| product_id | Product | Item SKU being relocated from the dock. |
| quantity | Putaway Quantity | Number of units transferred into the permanent storage location. |