|
@@ -90,7 +90,7 @@ class AdmViewModel(private val repository: AdmRepository) : ViewModel() {
|
|
|
*/
|
|
|
fun downloadBuilding(
|
|
|
sp: SharedPreferences,
|
|
|
- isOnlyRelation: Boolean = false,
|
|
|
+ isProject: Boolean = false,
|
|
|
block: (() -> Unit)? = null
|
|
|
) {
|
|
|
viewModelScope.launch(Dispatchers.IO) {
|
|
@@ -106,18 +106,46 @@ class AdmViewModel(private val repository: AdmRepository) : ViewModel() {
|
|
|
userId = "bdtp",
|
|
|
projectId = building.projectId!!,
|
|
|
groupCode = building.groupCode!!,
|
|
|
- buildingId = if (isOnlyRelation) "" else building.id,
|
|
|
+ buildingId = if (isProject) "" else building.id,
|
|
|
clientId = sp.getString(CLIENT_ID, "") ?: "",
|
|
|
- bdtpDownloadTs = sp.getLong("${building.buildingId}.$BDTP_TS", 0L),
|
|
|
- admDownloadTs = sp.getLong("${building.buildingId}.$ADM_TS", 0L)
|
|
|
+ bdtpDownloadTs = sp.getLong(
|
|
|
+ "${
|
|
|
+ if (isProject)
|
|
|
+ building.projectId
|
|
|
+ else
|
|
|
+ building.id
|
|
|
+ }.$BDTP_TS",
|
|
|
+ 0L
|
|
|
+ ),
|
|
|
+ admDownloadTs = sp.getLong(
|
|
|
+ "${
|
|
|
+ if (isProject)
|
|
|
+ building.projectId
|
|
|
+ else
|
|
|
+ building.id
|
|
|
+ }.$ADM_TS",
|
|
|
+ 0L
|
|
|
+ )
|
|
|
)
|
|
|
) {
|
|
|
Log.e(
|
|
|
"downloadBuilding",
|
|
|
"bdtpDownloadTs:${it.bdtpDownloadTs}, admDownloadTs:${it.admDownloadTs}"
|
|
|
)
|
|
|
- sp.edit { putLong("${it.buildingId}.$BDTP_TS", it.bdtpDownloadTs) }
|
|
|
- sp.edit { putLong("${it.buildingId}.$ADM_TS", it.admDownloadTs) }
|
|
|
+
|
|
|
+ sp.edit {
|
|
|
+ putLong(
|
|
|
+ "${if (isProject) building.projectId else building.id}.$BDTP_TS",
|
|
|
+ it.bdtpDownloadTs
|
|
|
+ )
|
|
|
+ }
|
|
|
+
|
|
|
+ sp.edit {
|
|
|
+ putLong(
|
|
|
+ "${if (isProject) building.projectId else building.id}.$ADM_TS",
|
|
|
+ it.admDownloadTs
|
|
|
+ )
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|