|
@@ -21,6 +21,8 @@ class GroupInfoBaseFragment : BaseFragment<FragmentGroupInfoBaseBinding>() {
|
|
|
|
|
|
private var opPercentageSelected = false
|
|
|
|
|
|
+ private var isForBid = false
|
|
|
+
|
|
|
private var opPercentageSubLevel = listOf<String>()
|
|
|
|
|
|
override fun getViewBinding(
|
|
@@ -66,6 +68,19 @@ class GroupInfoBaseFragment : BaseFragment<FragmentGroupInfoBaseBinding>() {
|
|
|
visitDays.setText(OASystem.groupOperationRequest.visitDays.toString())
|
|
|
visitMembers.setText(OASystem.groupOperationRequest.visitPNumber.toString())
|
|
|
contractDate.text = OASystem.groupOperationRequest.tontractTime
|
|
|
+
|
|
|
+ when(OASystem.groupOperationRequest.isBid) {
|
|
|
+ 1 -> {
|
|
|
+ binding.isForBidYes.isChecked = true
|
|
|
+ this@GroupInfoBaseFragment.isForBid = true
|
|
|
+ }
|
|
|
+
|
|
|
+ 0 -> {
|
|
|
+ binding.isForBidNo.isChecked = true
|
|
|
+ this@GroupInfoBaseFragment.isForBid = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
visitDaysBefore.setText(OASystem.groupOperationRequest.payDay.toString())
|
|
|
prePayment.setText(OASystem.groupOperationRequest.paymentMoney.toString())
|
|
|
|
|
@@ -275,6 +290,21 @@ class GroupInfoBaseFragment : BaseFragment<FragmentGroupInfoBaseBinding>() {
|
|
|
showDatePicker(resources.getString(R.string.contract_date), binding.contractDate) {}
|
|
|
}
|
|
|
|
|
|
+ binding.isForBid.setOnCheckedChangeListener { radioGroup, i ->
|
|
|
+ if (radioGroup.id == binding.isForBid.id) {
|
|
|
+ when(i) {
|
|
|
+ binding.isForBidYes.id -> {
|
|
|
+ OASystem.groupOperationRequest.isBid = 1
|
|
|
+ isForBid = true
|
|
|
+ }
|
|
|
+ binding.isForBidNo.id -> {
|
|
|
+ OASystem.groupOperationRequest.isBid = 0
|
|
|
+ isForBid = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
binding.opPercentageLevel.setOnClickListener {
|
|
|
showSelector {
|
|
|
val adapter = ListAdapter.Builder<Selector>().apply {
|
|
@@ -407,15 +437,6 @@ class GroupInfoBaseFragment : BaseFragment<FragmentGroupInfoBaseBinding>() {
|
|
|
return@setOnClickListener
|
|
|
}
|
|
|
|
|
|
- binding.groupName.text.apply {
|
|
|
- if (isNullOrBlank()) {
|
|
|
- showMessage(resources.getString(R.string.group_name_hint))
|
|
|
- return@setOnClickListener
|
|
|
- } else {
|
|
|
- OASystem.groupOperationRequest.teamName = this.toString()
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
binding.clientName.text.apply {
|
|
|
if (isNullOrBlank()) {
|
|
|
showMessage(resources.getString(R.string.client_name_hint))
|
|
@@ -470,6 +491,15 @@ class GroupInfoBaseFragment : BaseFragment<FragmentGroupInfoBaseBinding>() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ binding.groupName.text.apply {
|
|
|
+ if (isNullOrBlank()) {
|
|
|
+ showMessage(resources.getString(R.string.group_name_hint))
|
|
|
+ return@setOnClickListener
|
|
|
+ } else {
|
|
|
+ OASystem.groupOperationRequest.teamName = this.toString()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
binding.contractDate.text.apply {
|
|
|
if (isNullOrBlank()) {
|
|
|
showMessage(resources.getString(R.string.contract_date_hint))
|
|
@@ -480,34 +510,42 @@ class GroupInfoBaseFragment : BaseFragment<FragmentGroupInfoBaseBinding>() {
|
|
|
}
|
|
|
|
|
|
binding.visitDaysBefore.text.apply {
|
|
|
- if (isNullOrBlank()) {
|
|
|
- showMessage(resources.getString(R.string.day_before_hint))
|
|
|
- return@setOnClickListener
|
|
|
- } else {
|
|
|
- OASystem.groupOperationRequest.payDay = this.toString().toInt()
|
|
|
+ if (!isForBid) {
|
|
|
+ if (isNullOrBlank()) {
|
|
|
+ showMessage(resources.getString(R.string.day_before_hint))
|
|
|
+ return@setOnClickListener
|
|
|
+ } else {
|
|
|
+ OASystem.groupOperationRequest.payDay = this.toString().toInt()
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
binding.prePayment.text.apply {
|
|
|
- if (isNullOrBlank()) {
|
|
|
- showMessage(resources.getString(R.string.pre_payment_hint))
|
|
|
- return@setOnClickListener
|
|
|
- } else {
|
|
|
- OASystem.groupOperationRequest.paymentMoney = this.toString().toDouble()
|
|
|
+ if (!isForBid) {
|
|
|
+ if (isNullOrBlank()) {
|
|
|
+ showMessage(resources.getString(R.string.pre_payment_hint))
|
|
|
+ return@setOnClickListener
|
|
|
+ } else {
|
|
|
+ OASystem.groupOperationRequest.paymentMoney = this.toString().toDouble()
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
binding.opPercentageLevel.text.apply {
|
|
|
- if (isNullOrBlank()) {
|
|
|
- showMessage(resources.getString(R.string.op_percentage_hint))
|
|
|
- return@setOnClickListener
|
|
|
+ if (!isForBid) {
|
|
|
+ if (isNullOrBlank()) {
|
|
|
+ showMessage(resources.getString(R.string.op_percentage_hint))
|
|
|
+ return@setOnClickListener
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
binding.levelIllustrate.text.apply {
|
|
|
- if (isNullOrBlank()) {
|
|
|
- showMessage(resources.getString(R.string.level_illustrate_hint))
|
|
|
- return@setOnClickListener
|
|
|
+ if (!isForBid) {
|
|
|
+ if (isNullOrBlank()) {
|
|
|
+ showMessage(resources.getString(R.string.level_illustrate_hint))
|
|
|
+ return@setOnClickListener
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|