feat: refs #8175 updateLibraries
This commit is contained in:
parent
88ef5230f9
commit
241bd26b1f
|
@ -89,7 +89,7 @@ class InventoryParkingAdapter(
|
||||||
onPasillerosItemClickListener.onPasillerosItemClickListener(
|
onPasillerosItemClickListener.onPasillerosItemClickListener(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
title =
|
title =
|
||||||
R.string.itemSearch
|
R.string.itemSearch
|
||||||
), item.itemFk.toString()
|
), item.itemFk.toString()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -126,21 +126,19 @@ class InventoryParkingAdapter(
|
||||||
itemShelving.setOnClickListener {
|
itemShelving.setOnClickListener {
|
||||||
onPasillerosItemClickListener.onPasillerosItemClickListener(
|
onPasillerosItemClickListener.onPasillerosItemClickListener(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
title = R.string.titleUbicator)
|
title = R.string.titleUbicator
|
||||||
, item.shelvingFk
|
), item.shelvingFk
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
itemfkText.setOnClickListener {
|
itemfkText.setOnClickListener {
|
||||||
onPasillerosItemClickListener.onPasillerosItemClickListener(
|
onPasillerosItemClickListener.onPasillerosItemClickListener(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
title = R.string.itemSearch)
|
title = R.string.itemSearch
|
||||||
, item.itemFk.toString()
|
), item.itemFk.toString()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item.isChecked != null) {
|
if (item.isChecked != null) {
|
||||||
println("item ${item.itemFk} checked ${item.isChecked} ")
|
|
||||||
|
|
||||||
when (item.isChecked!!.toInt()) {
|
when (item.isChecked!!.toInt()) {
|
||||||
|
|
||||||
in 1..Int.MAX_VALUE -> itemRowLayout.setBackgroundColor(
|
in 1..Int.MAX_VALUE -> itemRowLayout.setBackgroundColor(
|
||||||
|
|
Loading…
Reference in New Issue