feat parkingHasOlder refs #6964

This commit is contained in:
Sergio De la torre 2024-06-26 07:07:35 +02:00
parent c9255c9ba3
commit a5d11b1613
2 changed files with 2 additions and 13 deletions

View File

@ -404,12 +404,9 @@ class UbicadorFragmentNew(
private fun customDialogActionParking() {
parking = customDialogInput.getValue()
//tarea 6964
/* viewModel.hasItemOlder(
viewModel.hasItemOlder(
shelvingFk, customDialogInput.getValue(),
)*/
viewModel.setParking(
shelvingFk, customDialogInput.getValue()
)
)
customDialogInput.dismiss()
}

View File

@ -234,14 +234,6 @@ class UbicadorViewModel(val context: Context) : BaseViewModel(context) {
}
}
/* when (action) {
Action.PARKINEAR -> {
setParking(shelvingFk, parking!!)
}
// Action.TRANSFERIR -> itemShelvingTransfer(itemFk!!, shelvingFkOut!!)
else -> {}
}*/
}
})