|
@@ -310,15 +310,33 @@ class AdmRepository(
|
|
to = { building ->
|
|
to = { building ->
|
|
block?.invoke(building)
|
|
block?.invoke(building)
|
|
try {
|
|
try {
|
|
- building.file?.let { db.fileDao().insFiles(it) }
|
|
|
|
- building.jobSpace?.let { db.jobSpaceDao().insSpaces(it) }
|
|
|
|
- building.objects?.let { db.objectDao().insObjects(it) }
|
|
|
|
- building.problemArch?.let { db.problemArchDao().insProblems(it) }
|
|
|
|
- building.problemEquip?.let { db.problemEquipDao().insProblems(it) }
|
|
|
|
- building.qrCode?.let { db.qrCodeDao().insQrCodes(it) }
|
|
|
|
- building.relations?.let { db.relationDao().insRelations(it) }
|
|
|
|
- building.pipes?.let { db.pipeDao().insPipes(it) }
|
|
|
|
- building.areas?.let { db.serveAreaDao().insertAreas(it) }
|
|
|
|
|
|
+ building.file
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.fileDao().insFiles(it) }
|
|
|
|
+ building.jobSpace
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.jobSpaceDao().insSpaces(it) }
|
|
|
|
+ building.objects
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.objectDao().insObjects(it) }
|
|
|
|
+ building.problemArch
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.problemArchDao().insProblems(it) }
|
|
|
|
+ building.problemEquip
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.problemEquipDao().insProblems(it) }
|
|
|
|
+ building.qrCode
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.qrCodeDao().insQrCodes(it) }
|
|
|
|
+ building.relations
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.relationDao().insRelations(it) }
|
|
|
|
+ building.pipes
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.pipeDao().insPipes(it) }
|
|
|
|
+ building.areas
|
|
|
|
+ ?.onEach { it.state = 2 }
|
|
|
|
+ ?.let { db.serveAreaDao().insertAreas(it) }
|
|
|
|
|
|
} catch (e: Exception) {
|
|
} catch (e: Exception) {
|
|
Log.d(
|
|
Log.d(
|
|
@@ -368,19 +386,32 @@ class AdmRepository(
|
|
val problemEquipDao = db.problemEquipDao()
|
|
val problemEquipDao = db.problemEquipDao()
|
|
val serveAreaDao = db.serveAreaDao()
|
|
val serveAreaDao = db.serveAreaDao()
|
|
|
|
|
|
- val pipes = pipeDao.getPipeByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
- val files = fileDao.getFileByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
- val spaces = spaceDao.getSpaceByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
- val qrCodes = qrCodeDao.getQrCodeByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
- val objects = objectDao.getObjectByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
|
|
+ val pipes =
|
|
|
|
+ pipeDao.getPipeByBuildingId(buildingId).filter { it.state == 0 || it.state == 1 }
|
|
|
|
+ val files =
|
|
|
|
+ fileDao.getFileByBuildingId(buildingId).filter { it.state == 0 || it.state == 1 }
|
|
|
|
+ val spaces =
|
|
|
|
+ spaceDao.getSpaceByBuildingId(buildingId).filter { it.state == 0 || it.state == 1 }
|
|
|
|
+ val qrCodes = qrCodeDao.getQrCodeByBuildingId(buildingId)
|
|
|
|
+ .filter { it.state == 0 || it.state == 1 }
|
|
|
|
+
|
|
|
|
+ val objects = objectDao.getObjectByBuildingId(buildingId)
|
|
|
|
+ .filter { it.state == 0 || it.state == 1 }
|
|
|
|
+
|
|
val relations =
|
|
val relations =
|
|
- relationDao.getRelationByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
|
|
+ relationDao.getRelationByBuildingId(buildingId)
|
|
|
|
+ .filter { it.state == 0 || it.state == 1 }
|
|
|
|
+
|
|
val problemArchs =
|
|
val problemArchs =
|
|
- problemArchDao.getProblemByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
|
|
+ problemArchDao.getProblemByBuildingId(buildingId)
|
|
|
|
+ .filter { it.state == 0 || it.state == 1 }
|
|
|
|
+
|
|
val problemEquips =
|
|
val problemEquips =
|
|
- problemEquipDao.getProblemByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
|
|
+ problemEquipDao.getProblemByBuildingId(buildingId)
|
|
|
|
+ .filter { it.state == 0 || it.state == 1 }
|
|
|
|
|
|
- val areas = serveAreaDao.getAreasByBuildingId(buildingId).filter { it.state == "1" }
|
|
|
|
|
|
+ val areas = serveAreaDao.getAreasByBuildingId(buildingId)
|
|
|
|
+ .filter { it.state == 0 || it.state == 1 }
|
|
|
|
|
|
val deviceId = sp.getString(DEVICE_ID, "") ?: ""
|
|
val deviceId = sp.getString(DEVICE_ID, "") ?: ""
|
|
|
|
|
|
@@ -413,35 +444,35 @@ class AdmRepository(
|
|
val result = response.data
|
|
val result = response.data
|
|
Log.e("AdmViewModel", """uploadBuilding success: $result""")
|
|
Log.e("AdmViewModel", """uploadBuilding success: $result""")
|
|
files.forEach {
|
|
files.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
fileDao.insFile(it)
|
|
fileDao.insFile(it)
|
|
}
|
|
}
|
|
pipes.forEach {
|
|
pipes.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
pipeDao.insPipe(it)
|
|
pipeDao.insPipe(it)
|
|
}
|
|
}
|
|
spaces.forEach {
|
|
spaces.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
spaceDao.insSpace(it)
|
|
spaceDao.insSpace(it)
|
|
}
|
|
}
|
|
objects.forEach {
|
|
objects.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
objectDao.insObject(it)
|
|
objectDao.insObject(it)
|
|
}
|
|
}
|
|
qrCodes.forEach {
|
|
qrCodes.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
qrCodeDao.insQrCode(it)
|
|
qrCodeDao.insQrCode(it)
|
|
}
|
|
}
|
|
relations.forEach {
|
|
relations.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
relationDao.insRelation(it)
|
|
relationDao.insRelation(it)
|
|
}
|
|
}
|
|
problemArchs.forEach {
|
|
problemArchs.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
problemArchDao.insProblem(it)
|
|
problemArchDao.insProblem(it)
|
|
}
|
|
}
|
|
problemEquips.forEach {
|
|
problemEquips.forEach {
|
|
- it.state = "2"
|
|
|
|
|
|
+ it.state = 2
|
|
problemEquipDao.insProblem(it)
|
|
problemEquipDao.insProblem(it)
|
|
}
|
|
}
|
|
}
|
|
}
|