diff --git a/app/src/main/java/es/verdnatura/presentation/view/feature/pasillero/model/PasillerosItemVO.kt b/app/src/main/java/es/verdnatura/presentation/view/feature/pasillero/model/PasillerosItemVO.kt index 3cab305f..32ea0440 100644 --- a/app/src/main/java/es/verdnatura/presentation/view/feature/pasillero/model/PasillerosItemVO.kt +++ b/app/src/main/java/es/verdnatura/presentation/view/feature/pasillero/model/PasillerosItemVO.kt @@ -7,10 +7,18 @@ class PasillerosItemVO( ) data class WorkerActionSalix( - val code: String, val model: String = ConstAndValues.MODELWORKERTYPEACTIVITY + val code: String, + val model: String = ConstAndValues.MODELWORKERTYPEACTIVITY, + val description: String = "" ) enum class CodeWorkerAction { - CLAIM, DELIVERY, ON_CHECKING, ON_PREPARATION, PREVIOUS, PALLETIZING, STOP, STORAGE + CLAIM, DELIVERY, ON_CHECKING, ON_PREPARATION, PREVIOUS, PALLETIZING, STOP, STORAGE, SHELVING_CLEAN_START, SHELVING_CLEAN_STOP -} \ No newline at end of file +} + +data class CleanAction( + val codeWorkerAction: CodeWorkerAction, + val shelving: String, + val description: String +) \ No newline at end of file