|
@@ -17,6 +17,7 @@ import com.pan_american.android.data.network.APIService
|
|
import com.pan_american.android.data.network.ServiceCreator
|
|
import com.pan_american.android.data.network.ServiceCreator
|
|
import com.pan_american.android.databinding.FragmentInBoardFeeBinding
|
|
import com.pan_american.android.databinding.FragmentInBoardFeeBinding
|
|
import com.pan_american.android.util.MoneyInputFilter
|
|
import com.pan_american.android.util.MoneyInputFilter
|
|
|
|
+import org.greenrobot.eventbus.EventBus
|
|
import retrofit2.Call
|
|
import retrofit2.Call
|
|
import retrofit2.Callback
|
|
import retrofit2.Callback
|
|
import retrofit2.Response
|
|
import retrofit2.Response
|
|
@@ -55,6 +56,20 @@ class InBoardFeeFragment : BaseFragment<FragmentInBoardFeeBinding>() {
|
|
binding.insurancePrice.filters = arrayOf(MoneyInputFilter(2))
|
|
binding.insurancePrice.filters = arrayOf(MoneyInputFilter(2))
|
|
binding.ticketPrice.filters = arrayOf(MoneyInputFilter(2))
|
|
binding.ticketPrice.filters = arrayOf(MoneyInputFilter(2))
|
|
|
|
|
|
|
|
+// if (!OASystem.entryAndExitDetailCanBeEdit) {
|
|
|
|
+// binding.isSelected.isEnabled = false
|
|
|
|
+// binding.visaPrice.isEnabled = false
|
|
|
|
+// binding.getNewestVisaPayment.visibility = View.GONE
|
|
|
|
+// binding.visaDescription.isEnabled = false
|
|
|
|
+// binding.vaccinePrice.isEnabled = false
|
|
|
|
+// binding.nucleicAcidTestingPrice.isEnabled = false
|
|
|
|
+// binding.servicePrice.isEnabled = false
|
|
|
|
+// binding.insurancePrice.isEnabled = false
|
|
|
|
+// binding.ticketPrice.isEnabled = false
|
|
|
|
+//
|
|
|
|
+// binding.commit.text = resources.getString(R.string.back)
|
|
|
|
+// }
|
|
|
|
+
|
|
getInBoardFeeDetail()
|
|
getInBoardFeeDetail()
|
|
}
|
|
}
|
|
|
|
|
|
@@ -64,7 +79,12 @@ class InBoardFeeFragment : BaseFragment<FragmentInBoardFeeBinding>() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
- apiService.getInBoardPaymentDetail(EntryAndExitPaymentTypeRequest(diId = groupId, subType = 1)).enqueue(object : Callback<InBoardDetailResponse> {
|
|
|
|
|
|
+ apiService.getInBoardPaymentDetail(
|
|
|
|
+ EntryAndExitPaymentTypeRequest(
|
|
|
|
+ diId = groupId,
|
|
|
|
+ subType = 1
|
|
|
|
+ )
|
|
|
|
+ ).enqueue(object : Callback<InBoardDetailResponse> {
|
|
override fun onResponse(
|
|
override fun onResponse(
|
|
call: Call<InBoardDetailResponse>,
|
|
call: Call<InBoardDetailResponse>,
|
|
response: Response<InBoardDetailResponse>
|
|
response: Response<InBoardDetailResponse>
|
|
@@ -106,6 +126,12 @@ class InBoardFeeFragment : BaseFragment<FragmentInBoardFeeBinding>() {
|
|
}
|
|
}
|
|
|
|
|
|
binding.commit.setOnClickListener {
|
|
binding.commit.setOnClickListener {
|
|
|
|
+
|
|
|
|
+ if (!OASystem.entryAndExitDetailCanBeEdit) {
|
|
|
|
+ parentFragmentManager.popBackStack()
|
|
|
|
+ return@setOnClickListener
|
|
|
|
+ }
|
|
|
|
+
|
|
if (binding.visaPrice.text.isBlank() || binding.visaPrice.text.endsWith('.')) {
|
|
if (binding.visaPrice.text.isBlank() || binding.visaPrice.text.endsWith('.')) {
|
|
showMessage(resources.getString(R.string.visa_price_input_hint))
|
|
showMessage(resources.getString(R.string.visa_price_input_hint))
|
|
return@setOnClickListener
|
|
return@setOnClickListener
|
|
@@ -116,7 +142,10 @@ class InBoardFeeFragment : BaseFragment<FragmentInBoardFeeBinding>() {
|
|
return@setOnClickListener
|
|
return@setOnClickListener
|
|
}
|
|
}
|
|
|
|
|
|
- if (binding.nucleicAcidTestingPrice.text.isBlank() || binding.nucleicAcidTestingPrice.text.endsWith('.')) {
|
|
|
|
|
|
+ if (binding.nucleicAcidTestingPrice.text.isBlank() || binding.nucleicAcidTestingPrice.text.endsWith(
|
|
|
|
+ '.'
|
|
|
|
+ )
|
|
|
|
+ ) {
|
|
showMessage(resources.getString(R.string.nucleic_acid_testing_payment_input_hint))
|
|
showMessage(resources.getString(R.string.nucleic_acid_testing_payment_input_hint))
|
|
return@setOnClickListener
|
|
return@setOnClickListener
|
|
}
|
|
}
|
|
@@ -163,34 +192,35 @@ class InBoardFeeFragment : BaseFragment<FragmentInBoardFeeBinding>() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
- apiService.getNewestVisaPayment(EntryAndExitTipsRequest(groupId = groupId, tipsType = 2)).enqueue(object : Callback<NewestVisaPaymentResponse> {
|
|
|
|
- override fun onResponse(
|
|
|
|
- call: Call<NewestVisaPaymentResponse>,
|
|
|
|
- response: Response<NewestVisaPaymentResponse>
|
|
|
|
- ) {
|
|
|
|
- val detailResponse = response.body()
|
|
|
|
|
|
+ apiService.getNewestVisaPayment(EntryAndExitTipsRequest(groupId = groupId, tipsType = 2))
|
|
|
|
+ .enqueue(object : Callback<NewestVisaPaymentResponse> {
|
|
|
|
+ override fun onResponse(
|
|
|
|
+ call: Call<NewestVisaPaymentResponse>,
|
|
|
|
+ response: Response<NewestVisaPaymentResponse>
|
|
|
|
+ ) {
|
|
|
|
+ val detailResponse = response.body()
|
|
|
|
|
|
- if (detailResponse != null) {
|
|
|
|
- if (detailResponse.code == 200) {
|
|
|
|
|
|
+ if (detailResponse != null) {
|
|
|
|
+ if (detailResponse.code == 200) {
|
|
|
|
|
|
- detailResponse.data.apply {
|
|
|
|
- binding.visaPrice.setText(feeTotal.toString())
|
|
|
|
|
|
+ detailResponse.data.apply {
|
|
|
|
+ binding.visaPrice.setText(feeTotal.toString())
|
|
|
|
|
|
- binding.visaDescription.setText(remark)
|
|
|
|
|
|
+ binding.visaDescription.setText(remark)
|
|
|
|
|
|
- showMessage(resources.getString(R.string.update_success))
|
|
|
|
- }
|
|
|
|
|
|
+ showMessage(resources.getString(R.string.update_success))
|
|
|
|
+ }
|
|
|
|
|
|
- } else {
|
|
|
|
- showMessage(detailResponse.msg)
|
|
|
|
|
|
+ } else {
|
|
|
|
+ showMessage(detailResponse.msg)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
|
|
- override fun onFailure(p0: Call<NewestVisaPaymentResponse>, p1: Throwable) {
|
|
|
|
- showErrorInfo(R.string.newest_visa_payment_get_error)
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
|
|
+ override fun onFailure(p0: Call<NewestVisaPaymentResponse>, p1: Throwable) {
|
|
|
|
+ showErrorInfo(R.string.newest_visa_payment_get_error)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
|
|
|
|
private fun updateInBoardPayment(updateInBoardPaymentRequest: UpdateInBoardPaymentRequest) {
|
|
private fun updateInBoardPayment(updateInBoardPaymentRequest: UpdateInBoardPaymentRequest) {
|
|
@@ -199,35 +229,42 @@ class InBoardFeeFragment : BaseFragment<FragmentInBoardFeeBinding>() {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
- apiService.updateInBoardPayment(updateInBoardPaymentRequest).enqueue(object : Callback<UpdateInBoardPaymentResponse> {
|
|
|
|
- override fun onResponse(
|
|
|
|
- call: Call<UpdateInBoardPaymentResponse>,
|
|
|
|
- response: Response<UpdateInBoardPaymentResponse>
|
|
|
|
- ) {
|
|
|
|
- val updateResponse = response.body()
|
|
|
|
|
|
+ apiService.updateInBoardPayment(updateInBoardPaymentRequest)
|
|
|
|
+ .enqueue(object : Callback<UpdateInBoardPaymentResponse> {
|
|
|
|
+ override fun onResponse(
|
|
|
|
+ call: Call<UpdateInBoardPaymentResponse>,
|
|
|
|
+ response: Response<UpdateInBoardPaymentResponse>
|
|
|
|
+ ) {
|
|
|
|
+ val updateResponse = response.body()
|
|
|
|
|
|
- if (updateResponse != null) {
|
|
|
|
- if (updateResponse.code == 200) {
|
|
|
|
|
|
+ if (updateResponse != null) {
|
|
|
|
+ if (updateResponse.code == 200) {
|
|
|
|
|
|
- OASystem.entryAndExitDetailResponse.choiceOneTotalCost = updateResponse.data.itemTotal
|
|
|
|
|
|
+ OASystem.entryAndExitDetailResponse.choiceOneTotalCost =
|
|
|
|
+ updateResponse.data.itemTotal
|
|
|
|
|
|
- OASystem.entryAndExitDetailResponse.choiceOne = updateInBoardPaymentRequest.choiceOne
|
|
|
|
|
|
+ OASystem.entryAndExitDetailResponse.choiceOne =
|
|
|
|
+ if (binding.isSelected.isChecked) {
|
|
|
|
+ 1
|
|
|
|
+ } else {
|
|
|
|
+ 0
|
|
|
|
+ }
|
|
|
|
|
|
- OASystem.entryAndExitDetailResponse.diId = updateResponse.data.parentId
|
|
|
|
|
|
+ EventBus.getDefault().post(OASystem.entryAndExitDetailResponse)
|
|
|
|
|
|
- showMessage(resources.getString(R.string.update_success))
|
|
|
|
|
|
+ showMessage(resources.getString(R.string.update_success))
|
|
|
|
|
|
- parentFragmentManager.popBackStack()
|
|
|
|
|
|
+ parentFragmentManager.popBackStack()
|
|
|
|
|
|
- } else {
|
|
|
|
- showMessage(updateResponse.msg)
|
|
|
|
|
|
+ } else {
|
|
|
|
+ showMessage(updateResponse.msg)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
|
|
- override fun onFailure(p0: Call<UpdateInBoardPaymentResponse>, p1: Throwable) {
|
|
|
|
- showErrorInfo(R.string.update_error)
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
|
|
+ override fun onFailure(p0: Call<UpdateInBoardPaymentResponse>, p1: Throwable) {
|
|
|
|
+ showErrorInfo(R.string.update_error)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
}
|
|
}
|