Solucionado caso en el cual el grouping es null y se cerraba la app
This commit is contained in:
parent
7edeb2037c
commit
bf1818220d
|
@ -14,8 +14,9 @@ android {
|
|||
applicationId "es.verdnatura"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 29
|
||||
versionCode 76
|
||||
versionName "6.1.9" //VERSION CODE 76, añadido grouping, reference, prioridad, controladores vs scadores, boton mensaje error,rocket salix y error al añadir elemento a colección.
|
||||
versionCode 80
|
||||
versionName "6.1.9.1" //VERSION CODE 77, arreglado el null de grouping en ubicador.
|
||||
//versionName "6.1.9" VERSION CODE 76, añadido grouping, reference, prioridad, controladores vs scadores, boton mensaje error,rocket salix y error al añadir elemento a colección.
|
||||
// Sin subir, Modificado y añadido mensajes de error, añadido opcion Dia de venta y su parking, teclado numerico para controlador
|
||||
// versionName "6.1.8.5" VERSION CODE 75 // 23-10-2021//VERSION CODE 74-75 .Pantalla "Dia de venta y parking" Modificado itemtrash, deprecated preferenceManager, quitados ;,puesto menu general al controlador
|
||||
//versionName "6.1.8.4.1" //VERSION CODE 73 . Modificar itemtrash
|
||||
|
|
Binary file not shown.
|
@ -11,8 +11,8 @@
|
|||
"type": "SINGLE",
|
||||
"filters": [],
|
||||
"attributes": [],
|
||||
"versionCode": 76,
|
||||
"versionName": "6.1.9",
|
||||
"versionCode": 80,
|
||||
"versionName": "6.1.9.1",
|
||||
"outputFile": "app-release.apk"
|
||||
}
|
||||
],
|
||||
|
|
|
@ -5,6 +5,7 @@ import android.content.SharedPreferences
|
|||
import android.graphics.drawable.Drawable
|
||||
import android.media.MediaPlayer
|
||||
import android.os.Bundle
|
||||
import android.util.Log
|
||||
import android.view.View
|
||||
import android.view.inputmethod.EditorInfo
|
||||
import android.widget.Toast
|
||||
|
@ -267,7 +268,11 @@ class UbicadorFragment(
|
|||
adapter = UbicadorAdapter(listItems,onPasillerosItemClickListener = pasillerosItemClickListener!!,
|
||||
onVisibleClickListener = object: OnVisibleClickListener{
|
||||
override fun onVisibleClickListener(item: ItemUbicadorVO) {
|
||||
showAddItem(item.item,item.packing,item.stickers,item.visible,true,item,item.grouping)
|
||||
|
||||
// if (item.grouping.isNullOrEmpty()){item.grouping=""}
|
||||
showAddItem(item.item,item.packing,item.stickers,item.visible,true,item,
|
||||
grouping=if (item.grouping.isNullOrEmpty()) { "" } else item.grouping)
|
||||
|
||||
}
|
||||
|
||||
},onMoreClickListener = object: OnMoreClickListener{
|
||||
|
|
Loading…
Reference in New Issue