b1c3952d09
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #271 | Créer une nouvelle expédition (étape 1) | ## Description de la PR ## Modification du .env ## Check list [x ] Pas de régression TU/TI/TF rédigée [x ] TU/TI/TF OK [x ] CHANGELOG modifié Co-authored-by: kevin <kevin@yuno.malio.fr> Reviewed-on: https://gitea.malio.fr/MALIO-DEV/Ferme/pulls/12 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: Matteo <matteo@yuno.malio.fr> Co-committed-by: Matteo <matteo@yuno.malio.fr>
21 lines
478 B
TypeScript
21 lines
478 B
TypeScript
export enum StepLabel {
|
|
Reception = 'Réception',
|
|
GrossWeighing = 'Pesée à plein',
|
|
Selection = 'Sélection réceptionnées',
|
|
TareWeighing = 'Pesée à vide',
|
|
Shipment = 'Expédition',
|
|
}
|
|
|
|
export const RECEPTION_STEP_LABELS = [
|
|
StepLabel.Reception,
|
|
StepLabel.GrossWeighing,
|
|
StepLabel.Selection,
|
|
StepLabel.TareWeighing
|
|
]
|
|
|
|
export const SHIPMENT_STEP_LABELS = [
|
|
StepLabel.Shipment,
|
|
StepLabel.TareWeighing,
|
|
StepLabel.GrossWeighing,
|
|
]
|