Version 9.1Beta-CMR quitado, rgb quitado
This commit is contained in:
parent
6a876e010f
commit
2cf223ff8b
|
@ -504,7 +504,7 @@ class AjustesViewModel(context: Context) : BaseViewModel() {
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
_operatorGetTrainResponse.value =
|
_operatorGetTrainResponse.value =
|
||||||
ResponseItemVO(response.body().toString(), false)
|
ResponseItemVO(if (response.body().toString()=="false")"" else{response.body().toString()}, false)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -541,7 +541,7 @@ class AjustesViewModel(context: Context) : BaseViewModel() {
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
_operatorGetItemPackingType.value =
|
_operatorGetItemPackingType.value =
|
||||||
ResponseItemVO(response.body().toString(), false)
|
ResponseItemVO(if (response.body().toString()=="false")"" else{response.body().toString()}, false)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -301,7 +301,7 @@ class PasilleroViewModel(context: Context) : BaseViewModel() {
|
||||||
)
|
)
|
||||||
|
|
||||||
//Tarea #3986
|
//Tarea #3986
|
||||||
_pasillerositem.add(
|
/* _pasillerositem.add(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
31,
|
31,
|
||||||
R.drawable.ic_cmr,
|
R.drawable.ic_cmr,
|
||||||
|
@ -309,7 +309,7 @@ class PasilleroViewModel(context: Context) : BaseViewModel() {
|
||||||
R.string.titleCMRState,
|
R.string.titleCMRState,
|
||||||
contextApp.getString(R.string.titleCMRDescrip)
|
contextApp.getString(R.string.titleCMRDescrip)
|
||||||
)
|
)
|
||||||
)
|
)*/
|
||||||
_pasillerositem.add(
|
_pasillerositem.add(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
40,
|
40,
|
||||||
|
|
|
@ -65,7 +65,7 @@ class SacadorFragment :
|
||||||
)
|
)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
val working_in_test = true //sergio: Ok en app
|
val working_in_test = false //sergio: Ok en app
|
||||||
if (!working_in_test) {
|
if (!working_in_test) {
|
||||||
viewModel.collectionGetSalix(token = getData(TOKEN))
|
viewModel.collectionGetSalix(token = getData(TOKEN))
|
||||||
} else {
|
} else {
|
||||||
|
@ -242,7 +242,7 @@ class SacadorFragment :
|
||||||
goBack = false
|
goBack = false
|
||||||
//sergio:para asegurarnos que aparece en pantalla.
|
//sergio:para asegurarnos que aparece en pantalla.
|
||||||
|
|
||||||
val working_in_test = true //sergio: ok en app SACADOR
|
val working_in_test = false //sergio: ok en app SACADOR
|
||||||
if (!working_in_test) {
|
if (!working_in_test) {
|
||||||
viewModel.collectionGetSalix(token = getData(TOKEN))
|
viewModel.collectionGetSalix(token = getData(TOKEN))
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue