feat: refs#8811 buscarItemByWarehouse

This commit is contained in:
Sergio De la torre 2025-03-26 08:40:21 +01:00
parent 091b597f34
commit c4378b3f4c
4 changed files with 61 additions and 19 deletions

View File

@ -1,5 +1,7 @@
package es.verdnatura.presentation.view.feature.buscaritem.fragment
import es.verdnatura.MobileApplication
import es.verdnatura.domain.ConstAndValues.WAREHOUSEFK
import es.verdnatura.domain.SalixCallback
import es.verdnatura.domain.userCases.GetItemFromBarcodeUseCase
import es.verdnatura.presentation.base.BaseViewModelCompose
@ -23,7 +25,7 @@ class BuscarItemComposeViewModel(var application: android.app.Application) :
val uiState = _uiState.asStateFlow()
fun getIdFromCodeSalix(code: String) {
_uiState.update { it.copy(itemFk = code, isLoading = true) }
_uiState.update { it.copy(itemFk = code, isLoading = false) }
getItemFromBarcodeUseCase.execute(code)
.enqueue(object : SalixCallback<Int?>(application.applicationContext) {
override fun onSuccess(response: Response<Int?>) {
@ -42,14 +44,53 @@ class BuscarItemComposeViewModel(var application: android.app.Application) :
fun itemshelvingsGet(itemFk: Any) {
salix.itemShelvingsGet(
filter = """{"where":{"itemFk":$itemFk},"fields":["created","visible","available","shelvingFk"],
|"include":[{"relation":"shelving","scope":{"fields":["code","priority","parkingFk"],
|"include":{"relation":"parking","scope":{"fields":["code","sectorFk"]}}}}]}""".trimMargin()
filter = """{
"where": { "itemFk": $itemFk },
"fields": ["created", "visible", "available", "shelvingFk"],
"include": [
{
"relation": "shelving",
"scope": {
"fields": ["code", "priority", "parkingFk"],
"include": [
{
"relation": "parking",
"scope": {
"fields": ["code", "sectorFk"],
"include": [
{
"relation": "sector",
"scope": {
"fields": ["warehouseFk","description"],
"where": { "warehouseFk":
${
(application as MobileApplication).dataStoreApp.readDataStoreKey<Int>(
WAREHOUSEFK
)
}}
}
}
]
}
}
]
}
}
]
}""".trimIndent()
)
.enqueue(object : SalixCallback<List<ItemShelvings>>(application.applicationContext) {
override fun onSuccess(response: Response<List<ItemShelvings>>) {
response.body()?.let { list ->
_uiState.update { it.copy(items = list, isLoading = false) }
val filteredList = list.filter {
it.shelving.parking?.sector?.warehouseFk != null
}
_uiState.update {
it.copy(
items = filteredList,
isLoading = false,
)
}
}
}

View File

@ -58,7 +58,7 @@ class BuscarItemFragmentCompose(
}
private fun showSector(item: LocationItem) {
item.sector.toast(requireContext())
item.sector?.toast(requireContext())
}

View File

@ -53,16 +53,16 @@ fun BuscarItemScreen(
val locationItems = uiState.items
.filter { it.shelving.parking != null }
.map {
LocationItem(
parking = it.shelving.parking!!.code,
matricula = it.shelving.code,
visible = it.visible.toString(),
reserve = it.available.toString(),
priority = it.shelving.priority.toString(),
fecha = it.created,
sector = it.shelving.parking.sector.description
)
}
LocationItem(
parking = it.shelving.parking!!.code,
matricula = it.shelving.code,
visible = it.visible.toString(),
reserve = it.available.toString(),
priority = it.shelving.priority.toString(),
fecha = it.created,
sector = it.shelving.parking.sector?.description
)
}
LocationScreenContent(
items = locationItems,
@ -182,7 +182,7 @@ private fun LocationScreenContent(
LocationRow(
item = item,
onLongClick = { selectedItem ->
onLongClick(selectedItem.sector)
selectedItem.sector?.let { onLongClick(it) }
},
onClick = { selectedItem ->
onClick(selectedItem.matricula)
@ -357,7 +357,7 @@ data class LocationItem(
val reserve: String,
val priority: String,
val fecha: String,
val sector: String
val sector: String? = ""
)
// Vista previa

View File

@ -24,5 +24,6 @@ data class Parking(
)
data class Sector(
val description: String
val description: String,
val warehouseFk: Number
)