|
@@ -3,7 +3,6 @@ package com.pan_american.android.ui.group_management.entry_and_exit_fee_draft
|
|
import android.os.Bundle
|
|
import android.os.Bundle
|
|
import android.text.Editable
|
|
import android.text.Editable
|
|
import android.text.TextWatcher
|
|
import android.text.TextWatcher
|
|
-import android.util.Log
|
|
|
|
import android.view.Gravity
|
|
import android.view.Gravity
|
|
import android.view.View
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import android.view.ViewGroup
|
|
@@ -13,7 +12,6 @@ import android.widget.PopupWindow
|
|
import android.widget.TextView
|
|
import android.widget.TextView
|
|
import androidx.core.content.res.ResourcesCompat
|
|
import androidx.core.content.res.ResourcesCompat
|
|
import androidx.recyclerview.widget.LinearLayoutManager
|
|
import androidx.recyclerview.widget.LinearLayoutManager
|
|
-import com.google.gson.Gson
|
|
|
|
import com.pan_american.android.OASystem
|
|
import com.pan_american.android.OASystem
|
|
import com.pan_american.android.R
|
|
import com.pan_american.android.R
|
|
import com.pan_american.android.base.BaseActivity
|
|
import com.pan_american.android.base.BaseActivity
|
|
@@ -140,8 +138,10 @@ class EntryAndExitDraftPaymentDetailActivity : BaseActivity<ActivityEntryAndExit
|
|
binding.city.setOnClickListener {
|
|
binding.city.setOnClickListener {
|
|
entryAndExitPaymentPrincipleRequest.apply {
|
|
entryAndExitPaymentPrincipleRequest.apply {
|
|
pageIndex = 1
|
|
pageIndex = 1
|
|
|
|
+ search = ""
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ principleData.clear()
|
|
getCityAndPaymentPrincipleData(1)
|
|
getCityAndPaymentPrincipleData(1)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -210,8 +210,16 @@ class EntryAndExitDraftPaymentDetailActivity : BaseActivity<ActivityEntryAndExit
|
|
if (dataResponse != null) {
|
|
if (dataResponse != null) {
|
|
if (dataResponse.code == 200) {
|
|
if (dataResponse.code == 200) {
|
|
|
|
|
|
|
|
+ if (OASystem.entryAndExitLastChoiceCity.id != 0) {
|
|
|
|
+ if (!principleData.contains(OASystem.entryAndExitLastChoiceCity)) {
|
|
|
|
+ principleData.add(OASystem.entryAndExitLastChoiceCity)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
for (item in dataResponse.data) {
|
|
for (item in dataResponse.data) {
|
|
- principleData.add(item)
|
|
|
|
|
|
+ if (OASystem.entryAndExitLastChoiceCity.id != item.id) {
|
|
|
|
+ principleData.add(item)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
when (type) {
|
|
when (type) {
|
|
@@ -298,7 +306,7 @@ class EntryAndExitDraftPaymentDetailActivity : BaseActivity<ActivityEntryAndExit
|
|
|
|
|
|
var paymentPrinciple = 0.0
|
|
var paymentPrinciple = 0.0
|
|
|
|
|
|
- when (type) {
|
|
|
|
|
|
+ when (updateEntryAndExitDraftPaymentDetailRequest.feeType) {
|
|
3 -> {
|
|
3 -> {
|
|
binding.paymentPrinciple.setText(
|
|
binding.paymentPrinciple.setText(
|
|
"$roomCost"
|
|
"$roomCost"
|
|
@@ -322,6 +330,14 @@ class EntryAndExitDraftPaymentDetailActivity : BaseActivity<ActivityEntryAndExit
|
|
|
|
|
|
paymentPrinciple = publicCost
|
|
paymentPrinciple = publicCost
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ 6 -> {
|
|
|
|
+ binding.paymentPrinciple.setText(
|
|
|
|
+ "$trainCost"
|
|
|
|
+ )
|
|
|
|
+
|
|
|
|
+ paymentPrinciple = trainCost
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
for (item in OASystem.entryAndExitDraftResponse.currencys) {
|
|
for (item in OASystem.entryAndExitDraftResponse.currencys) {
|
|
@@ -334,6 +350,8 @@ class EntryAndExitDraftPaymentDetailActivity : BaseActivity<ActivityEntryAndExit
|
|
)
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ OASystem.entryAndExitLastChoiceCity = this
|
|
}
|
|
}
|
|
|
|
|
|
popupWindow.dismiss()
|
|
popupWindow.dismiss()
|
|
@@ -462,7 +480,6 @@ class EntryAndExitDraftPaymentDetailActivity : BaseActivity<ActivityEntryAndExit
|
|
}
|
|
}
|
|
|
|
|
|
private fun updateEntryAndExitPaymentDetail() {
|
|
private fun updateEntryAndExitPaymentDetail() {
|
|
- Log.e("request", Gson().toJson(updateEntryAndExitDraftPaymentDetailRequest))
|
|
|
|
apiService.updateEntryAndExitDraftPaymentDetail(updateEntryAndExitDraftPaymentDetailRequest).enqueue(object :
|
|
apiService.updateEntryAndExitDraftPaymentDetail(updateEntryAndExitDraftPaymentDetailRequest).enqueue(object :
|
|
Callback<BaseResponse> {
|
|
Callback<BaseResponse> {
|
|
override fun onResponse(call: Call<BaseResponse>, response: Response<BaseResponse>) {
|
|
override fun onResponse(call: Call<BaseResponse>, response: Response<BaseResponse>) {
|