feat hasItemOlder #refs 6964

This commit is contained in:
Sergio De la torre 2024-06-18 12:42:46 +02:00
parent 87812e1b04
commit d8f66b63c2
1 changed files with 12 additions and 0 deletions

View File

@ -49,3 +49,15 @@ class ItemUbicadorListVO(
class ItemUbicadorListNew(
var list: List<ItemUbicador> = listOf()
)
class ItemShelvingNewerList(
var list: List<ItemShelvingNewer> = listOf(),
var originalParking:String,
var originalShelvingFk:String
)
data class ItemShelvingNewer(
var itemFk: Int,
var shelvingFk : String,
)