feat: refs#8624 cleaAction
This commit is contained in:
parent
12e5241a10
commit
8d1110d09e
|
@ -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
|
||||||
|
)
|
Loading…
Reference in New Issue