23 lines
540 B
TypeScript
23 lines
540 B
TypeScript
export enum StepLabel {
|
|
Reception = 'Réception',
|
|
GrossWeighing = 'Pesée à plein',
|
|
Selection = 'Sélection réception',
|
|
TareWeighing = 'Pesée à vide',
|
|
Shipment = 'Expédition',
|
|
ShipmentLoading = 'Chargement',
|
|
}
|
|
|
|
export const RECEPTION_STEP_LABELS = [
|
|
StepLabel.Reception,
|
|
StepLabel.GrossWeighing,
|
|
StepLabel.Selection,
|
|
StepLabel.TareWeighing
|
|
]
|
|
|
|
export const SHIPMENT_STEP_LABELS = [
|
|
StepLabel.Shipment,
|
|
StepLabel.TareWeighing,
|
|
StepLabel.ShipmentLoading,
|
|
StepLabel.GrossWeighing,
|
|
]
|