|
@@ -20,6 +20,7 @@ import com.bumptech.glide.Glide
|
|
|
import com.sybotan.android.demo.R
|
|
|
import com.sybotan.android.demo.adapter.StaticInfoAdapter
|
|
|
import cn.sagacloud.android.cadengine.types.Photos
|
|
|
+import com.framework.mvvm.model.db.entity.dict.ComponentEntity
|
|
|
import com.framework.mvvm.model.db.entity.task.*
|
|
|
import com.framework.mvvm.model.db.entity.dict.EquipmentEntity
|
|
|
import com.google.gson.Gson
|
|
@@ -72,6 +73,7 @@ class EquipDetailActivity : BaseActivity(), View.OnTouchListener {
|
|
|
private lateinit var localName: ListItemView
|
|
|
private lateinit var location: ListItemView
|
|
|
private lateinit var serveArea: ListItemView
|
|
|
+ private lateinit var compType: ListItemView
|
|
|
private lateinit var doneSwitch: RMTristateSwitch
|
|
|
private lateinit var height: ListItemView
|
|
|
private lateinit var locationWhere: ListItemView
|
|
@@ -155,6 +157,7 @@ class EquipDetailActivity : BaseActivity(), View.OnTouchListener {
|
|
|
expandLvPipe = findViewById(R.id.expandLvPipe)
|
|
|
expandLvRelation = findViewById(R.id.expandLvRelation)
|
|
|
stateName = findViewById(R.id.stateName)
|
|
|
+ compType = findViewById(R.id.compType)
|
|
|
expandLvPipe.setGroupIndicator(null)
|
|
|
expandLvPipe.divider = null
|
|
|
expandLvRelation.setGroupIndicator(null)
|
|
@@ -231,6 +234,13 @@ class EquipDetailActivity : BaseActivity(), View.OnTouchListener {
|
|
|
intent.putExtra("params", bundle)
|
|
|
startActivity(intent)
|
|
|
}
|
|
|
+ compType.setOnClickListener {
|
|
|
+ if (equipEntity == null) {
|
|
|
+ ToastUtils.showMyToast("请选择设备类")
|
|
|
+ return@setOnClickListener
|
|
|
+ }
|
|
|
+ equipVM.getCompType(equipEntity!!.code!!)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//重写onTouch方法
|
|
@@ -341,6 +351,11 @@ class EquipDetailActivity : BaseActivity(), View.OnTouchListener {
|
|
|
position!!.z.region = zRegion.toString()
|
|
|
}
|
|
|
}
|
|
|
+ if (staticInfoAdapter.hashMap != null && staticInfoAdapter.hashMap.get("compType") != null) {
|
|
|
+ val compCode = staticInfoAdapter.hashMap.get("compType")
|
|
|
+ compType.setTvRight(compCode.toString())
|
|
|
+
|
|
|
+ }
|
|
|
if (staticInfoAdapter.hashMap != null && staticInfoAdapter.hashMap.get("equipPhoto") != null) {
|
|
|
val infoList = Gson().fromJson<List<Photos>>(
|
|
|
staticInfoAdapter.hashMap.get("equipPhoto").toString(),
|
|
@@ -506,6 +521,19 @@ class EquipDetailActivity : BaseActivity(), View.OnTouchListener {
|
|
|
EquipDetailVM.SERVE_AREA -> {
|
|
|
serveArea.setTvRight(params.toString())
|
|
|
}
|
|
|
+
|
|
|
+ EquipDetailVM.COMP_TYPE -> {
|
|
|
+ val compTypes = params as ArrayList<ComponentEntity>
|
|
|
+ val pop = SelectListSinglePopupWindow(this)
|
|
|
+ pop.setGenList(compTypes, Constant.TYPE7)
|
|
|
+ pop.setTitle(true, "选择对象")
|
|
|
+ pop.showAtLocation(root, Gravity.BOTTOM or Gravity.CENTER_HORIZONTAL, 0, 0)
|
|
|
+ pop.setOnItemClickListener {
|
|
|
+ val comp = compTypes[it]
|
|
|
+ compType.setTvRight(comp.compName)
|
|
|
+ staticInfoAdapter.hashMap["compType"] = comp.compCode
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}, this, buildingId, floorId, projectId)
|
|
|
equipVM.getEquipment(deviceId)
|