|
|
@@ -63,6 +63,11 @@ class SimpleProcessActivity : BaseActivity<ActivitySimpleProcessBinding>() {
|
|
|
}
|
|
|
|
|
|
mBinding?.llConfirmComplete?.setOnClickListener {
|
|
|
+ val doneCount = PresentationManager.mSimpleTicket?.lockerTogetherList?.filter { it.status == 2 }?.size ?: 0
|
|
|
+ if (doneCount < 2) {
|
|
|
+ ToastUtils.tip(R.string.simple_please_wait_for_colocker_to_finish)
|
|
|
+ return@setOnClickListener
|
|
|
+ }
|
|
|
PresentationManager.mStep = 6
|
|
|
changeStep(6)
|
|
|
PresentationManager.checkSimpleEquip(this)
|