|
@@ -3,9 +3,14 @@ package com.pan_american.android.ui.group_invite_official.invite_official_paymen
|
|
|
import android.os.Bundle
|
|
|
import android.text.Editable
|
|
|
import android.text.TextWatcher
|
|
|
+import android.view.Gravity
|
|
|
import android.view.View
|
|
|
+import android.view.ViewGroup
|
|
|
+import android.widget.PopupWindow
|
|
|
import android.widget.TextView
|
|
|
import androidx.core.content.res.ResourcesCompat
|
|
|
+import com.bin.david.form.core.SmartTable
|
|
|
+import com.bin.david.form.data.style.FontStyle
|
|
|
import com.pan_american.android.OASystem
|
|
|
import com.pan_american.android.R
|
|
|
import com.pan_american.android.base.BaseActivity
|
|
@@ -14,7 +19,10 @@ import com.pan_american.android.base.ListAdapter
|
|
|
import com.pan_american.android.data.model.common.entity.Selector
|
|
|
import com.pan_american.android.data.model.common.network.GroupCurrencyRequest
|
|
|
import com.pan_american.android.data.model.common.network.GroupCurrencyResponse
|
|
|
+import com.pan_american.android.data.model.group_invite_official.invite_official_payment_insert.entity.InviteOfficialPaymentCost
|
|
|
import com.pan_american.android.data.model.group_invite_official.invite_official_payment_insert.network.InviteOfficialBaseDataResponse
|
|
|
+import com.pan_american.android.data.model.group_invite_official.invite_official_payment_insert.network.InviteOfficialCostDataRequest
|
|
|
+import com.pan_american.android.data.model.group_invite_official.invite_official_payment_insert.network.InviteOfficialCostDataResponse
|
|
|
import com.pan_american.android.data.model.group_invite_official.invite_official_payment_insert.network.InviteOfficialDetailRequest
|
|
|
import com.pan_american.android.data.model.group_invite_official.invite_official_payment_insert.network.InviteOfficialDetailResponse
|
|
|
import com.pan_american.android.data.model.group_invite_official.invite_official_payment_insert.network.UpdateInviteOfficialRequest
|
|
@@ -94,6 +102,14 @@ class AddInvitePaymentActivity : BaseActivity<ActivityAddInvitePaymentBinding>()
|
|
|
|
|
|
private var isAudit = -1
|
|
|
|
|
|
+ private var invitePaymentCostInit = false
|
|
|
+
|
|
|
+ private var invitePaymentCostCurrency = ""
|
|
|
+
|
|
|
+ private var invitePaymentCostExchangeRate = 0.0
|
|
|
+
|
|
|
+ private var invitePaymentCostList = ArrayList<InviteOfficialPaymentCost>()
|
|
|
+
|
|
|
override fun getViewBinding() = ActivityAddInvitePaymentBinding.inflate(layoutInflater)
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
@@ -140,9 +156,78 @@ class AddInvitePaymentActivity : BaseActivity<ActivityAddInvitePaymentBinding>()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ rightTextField.apply {
|
|
|
+ visibility = View.VISIBLE
|
|
|
+ text = resources.getString(R.string.show_cost)
|
|
|
+ }
|
|
|
+
|
|
|
backButton.setOnClickListener {
|
|
|
back()
|
|
|
}
|
|
|
+
|
|
|
+ rightTextField.setOnClickListener {
|
|
|
+
|
|
|
+ val invitePaymentCostPopView = View.inflate(OASystem.context, R.layout.popup_cost_table, null)
|
|
|
+ popupWindow = PopupWindow(invitePaymentCostPopView, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)
|
|
|
+
|
|
|
+ showPopupWindow {
|
|
|
+
|
|
|
+ val currencyAbbr = invitePaymentCostPopView.findViewById<TextView>(R.id.currency_abbr)
|
|
|
+ val exchangeRate = invitePaymentCostPopView.findViewById<TextView>(R.id.exchange_rate)
|
|
|
+ val inviteOfficialCostTable = invitePaymentCostPopView.findViewById<SmartTable<InviteOfficialPaymentCost>>(R.id.table)
|
|
|
+
|
|
|
+ inviteOfficialCostTable.config.apply {
|
|
|
+ isShowXSequence = false
|
|
|
+ isShowYSequence = false
|
|
|
+ minTableWidth = popupWindow.width
|
|
|
+ tableTitleStyle = FontStyle(50, ResourcesCompat.getColor(resources, R.color.text_color, theme))
|
|
|
+ contentStyle = FontStyle(40, ResourcesCompat.getColor(resources, R.color.text_color, theme))
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!invitePaymentCostInit) {
|
|
|
+ apiService.getInviteOfficialCostData(InviteOfficialCostDataRequest(groupId, OASystem.C_TABLE_GROUND_CONVEY)).enqueue(object : Callback<InviteOfficialCostDataResponse> {
|
|
|
+ override fun onResponse(
|
|
|
+ call: Call<InviteOfficialCostDataResponse>,
|
|
|
+ response: Response<InviteOfficialCostDataResponse>
|
|
|
+ ) {
|
|
|
+
|
|
|
+ val costResponse = response.body()
|
|
|
+
|
|
|
+ if (costResponse != null) {
|
|
|
+ if (costResponse.code == 200) {
|
|
|
+
|
|
|
+ invitePaymentCostCurrency = costResponse.data.modulePromptInfos[0].currencyCode
|
|
|
+ invitePaymentCostExchangeRate = costResponse.data.modulePromptInfos[0].rate
|
|
|
+
|
|
|
+ invitePaymentCostList = costResponse.data.modulePromptInfos[0].data
|
|
|
+
|
|
|
+ currencyAbbr.text = invitePaymentCostCurrency
|
|
|
+ exchangeRate.text = invitePaymentCostExchangeRate.toString()
|
|
|
+
|
|
|
+ inviteOfficialCostTable.setData(invitePaymentCostList)
|
|
|
+
|
|
|
+ invitePaymentCostInit = true
|
|
|
+
|
|
|
+ } else {
|
|
|
+ showMessage(costResponse.msg)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun onFailure(call: Call<InviteOfficialCostDataResponse>, t: Throwable) {
|
|
|
+ showErrorInfo(R.string.invite_official_payment_cost_get_failed)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ currencyAbbr.text = invitePaymentCostCurrency
|
|
|
+ exchangeRate.text = invitePaymentCostExchangeRate.toString()
|
|
|
+
|
|
|
+ inviteOfficialCostTable.setData(invitePaymentCostList)
|
|
|
+ }
|
|
|
+
|
|
|
+ popupWindow.showAtLocation(binding.root, Gravity.BOTTOM, 0, 0)
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|