Browse Source

@task: use projectId or building.id

bai 3 years ago
parent
commit
9b0148c262
1 changed files with 34 additions and 6 deletions
  1. 34 6
      demo/src/main/java/com/framework/mvvm/mv/AdmViewModel.kt

+ 34 - 6
demo/src/main/java/com/framework/mvvm/mv/AdmViewModel.kt

@@ -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
+                        )
+                    }
                 }
             }