feat: refs#6869 ItemShelving_get

This commit is contained in:
Sergio De la torre 2025-02-28 12:05:09 +01:00
parent 44053fa039
commit ebf09db00d
1 changed files with 6 additions and 1 deletions

View File

@ -42,7 +42,12 @@ class BuscarItemViewModel(val context: Context) : BaseViewModel(context) {
)
.enqueue(object : SalixCallback<List<ItemShelvings>>(context) {
override fun onSuccess(response: Response<List<ItemShelvings>>) {
_itemShelvingsList.value = response.body()?.let { ItemShelvingsList(it) }
_itemShelvingsList.value = response.body()?.let {
val filteredList = it.filter { itemShelving ->
itemShelving.shelving.parking != null
}
ItemShelvingsList(filteredList)
}
}
})