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 {
|
||||
|
||||
_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 {
|
||||
|
||||
_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
|
||||
_pasillerositem.add(
|
||||
/* _pasillerositem.add(
|
||||
PasillerosItemVO(
|
||||
31,
|
||||
R.drawable.ic_cmr,
|
||||
|
@ -309,7 +309,7 @@ class PasilleroViewModel(context: Context) : BaseViewModel() {
|
|||
R.string.titleCMRState,
|
||||
contextApp.getString(R.string.titleCMRDescrip)
|
||||
)
|
||||
)
|
||||
)*/
|
||||
_pasillerositem.add(
|
||||
PasillerosItemVO(
|
||||
40,
|
||||
|
|
|
@ -65,7 +65,7 @@ class SacadorFragment :
|
|||
)
|
||||
|
||||
} else {
|
||||
val working_in_test = true //sergio: Ok en app
|
||||
val working_in_test = false //sergio: Ok en app
|
||||
if (!working_in_test) {
|
||||
viewModel.collectionGetSalix(token = getData(TOKEN))
|
||||
} else {
|
||||
|
@ -242,7 +242,7 @@ class SacadorFragment :
|
|||
goBack = false
|
||||
//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) {
|
||||
viewModel.collectionGetSalix(token = getData(TOKEN))
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue