feat lilium

This commit is contained in:
Sergio De la torre 2024-05-28 10:54:02 +02:00
parent ea1384b7c4
commit 9a9e96c86c
2 changed files with 16 additions and 1 deletions

View File

@ -12,7 +12,9 @@ import androidx.datastore.preferences.preferencesDataStore
import com.google.gson.Gson
import es.verdnatura.MobileApplication
import es.verdnatura.R
import es.verdnatura.domain.ConstAndValues.BASEURLLILIUM
import es.verdnatura.domain.ConstAndValues.BASEURLSALIX
import es.verdnatura.domain.ConstAndValues.BASE_URL_LILIUM
import es.verdnatura.domain.ConstAndValues.BASE_URL_SALIX
import es.verdnatura.domain.ConstAndValues.NUMBEROFWAGONS
import es.verdnatura.domain.ConstAndValues.PRINTERFK
@ -284,4 +286,13 @@ class DataStoreLocal(var mobileApplication: MobileApplication) {
}
return url
}
fun getServerLilium(): String {
var url =
readDataStoreKey<String>(BASEURLLILIUM)
if (url.isBlank()) {
url = BASE_URL_LILIUM
}
return url
}
}

View File

@ -82,15 +82,19 @@ class ShelvingLogFragment(
customDialog.dismiss()
}.show()
} else {
val itemId = it.list[0].id
println("web" to "${mobileApplication.dataStoreApp.getServerLilium()}/#!/shelving/$itemId/log")
ma.onPasillerosItemClickListener(
PasillerosItemVO(
title = getString(R.string.titleWebViewer),
),
entryPoint = Gson().toJson(
mutableMapOf(
"entryPoint" to itemId,
"web" to "${mobileApplication.dataStoreApp.getServerSalix()}/#!/shelving/$itemId/log"
"web" to "${mobileApplication.dataStoreApp.getServerLilium()}/#/shelving/$itemId/log"
)
)
)