|
@@ -22,6 +22,7 @@ import org.kodein.di.DI
|
|
|
import org.kodein.di.DIAware
|
|
|
import org.kodein.di.android.closestDI
|
|
|
import java.util.*
|
|
|
+import kotlin.collections.HashMap
|
|
|
|
|
|
class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
|
|
@@ -38,6 +39,7 @@ class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
private lateinit var spaceId: String
|
|
|
private lateinit var deviceId: String
|
|
|
private lateinit var equipment: EquipmentEntity
|
|
|
+ private lateinit var hashmap: HashMap<String,Any>
|
|
|
|
|
|
lateinit var viewModel: EquipDeliveryCodeVM
|
|
|
|
|
@@ -48,6 +50,7 @@ class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
private lateinit var tv1: TextView
|
|
|
private lateinit var tv2: TextView
|
|
|
private lateinit var edt3: TextView
|
|
|
+ private lateinit var titleTv: TextView
|
|
|
private lateinit var edt4: EditText
|
|
|
private lateinit var root: LinearLayout
|
|
|
val gson = Gson()
|
|
@@ -69,6 +72,7 @@ class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
spaceId = params.getString("spaceId", "")!!
|
|
|
deviceId = params.getString("deviceId", "")!!
|
|
|
equipment = (params.getSerializable("equipment") as EquipmentEntity?)!!
|
|
|
+ hashmap = (params.getSerializable("hashmap") as HashMap<String, Any>?)!!
|
|
|
backIv = findViewById(R.id.backIv)
|
|
|
edt1 = findViewById(R.id.edt1)
|
|
|
edt2 = findViewById(R.id.edt2)
|
|
@@ -78,6 +82,7 @@ class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
edt3 = findViewById(R.id.edt3)
|
|
|
edt4 = findViewById(R.id.edt4)
|
|
|
root = findViewById(R.id.root)
|
|
|
+ titleTv = findViewById(R.id.titleTv)
|
|
|
}
|
|
|
|
|
|
private fun initListener() {
|
|
@@ -129,10 +134,12 @@ class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
EquipDeliveryCodeVM.EQUIP_ENTITY -> {
|
|
|
if (equipment != null || !TextUtils.isEmpty(equipment.code)) {
|
|
|
tv1.text = equipment.code
|
|
|
+ titleTv.text = equipment.name
|
|
|
}
|
|
|
if (param != null) {
|
|
|
val equipEntity = param as ObjectEntity
|
|
|
tv1.text = equipEntity.classCode
|
|
|
+ titleTv.text = "${equipment.name}:${equipEntity.localId}"
|
|
|
val info = gson.fromJson(equipEntity.infos, HashMap::class.java)
|
|
|
val spaceDeliveryCode = info["digitalDeliveryID"]
|
|
|
if (spaceDeliveryCode != null && !TextUtils.isEmpty(spaceDeliveryCode.toString())) {
|
|
@@ -145,6 +152,15 @@ class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ if (hashmap != null && hashmap["digitalDeliveryID"]!=null &&!TextUtils.isEmpty(hashmap["digitalDeliveryID"].toString())) {
|
|
|
+ val split = hashmap["digitalDeliveryID"].toString().split("-")
|
|
|
+ if (split.size >= 5) {
|
|
|
+ edt1.setText(split[0])
|
|
|
+ edt2.setText("${split[1]}-${split[2]}")
|
|
|
+ edt3.text = split[3]
|
|
|
+ edt4.setText(split[4])
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
EquipDeliveryCodeVM.SPACE_ENTITY -> {
|
|
@@ -155,10 +171,10 @@ class EquipDeliveryCodeActivity : BaseActivity(), DIAware {
|
|
|
if (spaceDeliveryCode != null && !TextUtils.isEmpty(spaceDeliveryCode.toString())) {
|
|
|
tv2.text = spaceDeliveryCode.toString()
|
|
|
} else {
|
|
|
- tv2.text = "??????-RM??"
|
|
|
+ tv2.text = "??????-RM???"
|
|
|
}
|
|
|
} else {
|
|
|
- tv2.text = "??????-RM??"
|
|
|
+ tv2.text = "??????-RM???"
|
|
|
}
|
|
|
}
|
|
|
}
|