1ce6357c1d
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## 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é Reviewed-on: https://gitea.malio.fr/MALIO-DEV/Ferme/pulls/7 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
export enum StepLabel {
|
|
Reception = 'Réception',
|
|
GrossWeighing = 'Pesée à plein',
|
|
Selection = 'Sélection réceptionnées',
|
|
TareWeighing = 'Pesée à vide'
|
|
}
|
|
|
|
export const RECEPTION_STEP_LABELS = [
|
|
StepLabel.Reception,
|
|
StepLabel.GrossWeighing,
|
|
StepLabel.Selection,
|
|
StepLabel.TareWeighing
|
|
]
|