feat: refs#8624 cleaAction

This commit is contained in:
Sergio De la torre 2025-02-28 09:05:56 +01:00
parent 12e5241a10
commit 8d1110d09e
1 changed files with 11 additions and 3 deletions

View File

@ -7,10 +7,18 @@ class PasillerosItemVO(
) )
data class WorkerActionSalix( 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 { 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
} }
data class CleanAction(
val codeWorkerAction: CodeWorkerAction,
val shelving: String,
val description: String
)