58 lines
2.1 KiB
Markdown
58 lines
2.1 KiB
Markdown
---
|
|
title: "Picking — Vue d'ensemble"
|
|
tags: [picking, combinatoire, stations, index]
|
|
status: draft
|
|
last_updated: 2026-05-13
|
|
---
|
|
|
|
# Picking — Vue d'ensemble
|
|
|
|
> **Périmètre** : picking combinatoire (CR V3.0, 4-job, CstAtt), stations de
|
|
> picking, job d'assignation PK, waves et groupes, replenishment.
|
|
|
|
> **Standard EasyWMS** : voir [Picking](../../concepts/picking.md)
|
|
|
|
## Pages de cette section
|
|
|
|
- [Picking combinatoire](picking-combinatoire.md)
|
|
- [Stations de picking](stations-picking.md)
|
|
- [Job d'assignation PK (Mega Job)](job-assignation-pk.md)
|
|
- [Waves et groupes](waves-groupes.md)
|
|
- [Replenishment](replenishment.md)
|
|
- [Séquençage TK → PS](sequencage-tk-ps.md)
|
|
- [Séquençage TK → PS — Historique et arbitrage](sequencage-tk-ps-historique.md)
|
|
- [Placement PS → PK (choix de table)](placement-ps-pk.md)
|
|
- [Consolidation / Regroupement](consolidation-regroupement.md)
|
|
- [Échantillonnage](echantillonnage.md)
|
|
|
|
## Chaîne picking — Ordre des traitements
|
|
|
|
L'ordre réel de la chaîne picking est le suivant :
|
|
|
|
1. **LIM-80** — [Assignation PK](job-assignation-pk.md) : quelle commande
|
|
sur quel poste → déclenche la génération des tâches de picking
|
|
2. **LIM-84** — [Séquençage TK → PS](sequencage-tk-ps.md) : ordonne les
|
|
sorties des TK vers les PS
|
|
3. **LIM-82** — [Placement PS → PK](placement-ps-pk.md) : la palette
|
|
arrivant au PS va sur quelle table du PK
|
|
4. Workflow opérateur au PK (picking effectif)
|
|
|
|
## Vue synthétique du picking Limagrain
|
|
|
|
```mermaid
|
|
flowchart TD
|
|
OS[OS libéré + stock assigné] --> ASSIGN["LIM-80 : Assignation PK\n(commande → poste)"]
|
|
ASSIGN --> SEQ["LIM-84 : Séquençage TK → PS\n(tri : négatif > maïs > volume > poids)"]
|
|
SEQ --> PS[Palette arrive au PS]
|
|
PS --> PLACE["LIM-82 : Placement PS → PK\n(choix de table)"]
|
|
PLACE --> TABLE{Table ou buffer ?}
|
|
TABLE -->|Table libre| PICK[Prélèvement au PK]
|
|
TABLE -->|Buffer ES| WAIT[Attente buffer]
|
|
WAIT --> PICK
|
|
PICK --> NEG{"Picking négatif ?\n(% > 55% ET ≥ 7 kg)"}
|
|
NEG -->|Oui| PNEG[Picking négatif]
|
|
NEG -->|Non| PPOS[Picking direct]
|
|
PNEG --> FILM[Choix filmage]
|
|
PPOS --> FILM
|
|
FILM --> PIE[Passage PIE]
|
|
|