|
@@ -71,6 +71,10 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
|
|
|
private var currencySelect = false
|
|
|
|
|
|
+ private var overPayCurrencyId = 0
|
|
|
+
|
|
|
+ private var overPayExchangeRate = 0.0
|
|
|
+
|
|
|
private var paymentMarkId = 0
|
|
|
|
|
|
private var paymentMarkSelect = false
|
|
@@ -99,6 +103,14 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
|
|
|
private var groundConveyCostList = ArrayList<GroundConveyCost>()
|
|
|
|
|
|
+ private var threeFoodCost = 0.0
|
|
|
+
|
|
|
+ private var threeCurrencyId = 0
|
|
|
+
|
|
|
+ private var threeCurrencyCode = ""
|
|
|
+
|
|
|
+ private var listInit = false
|
|
|
+
|
|
|
override fun getViewBinding() = ActivityGroundConveyPaymentDetailBinding.inflate(layoutInflater)
|
|
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
@@ -114,7 +126,7 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
|
|
|
initTitle()
|
|
|
|
|
|
- getGroundConveyDetailResource()
|
|
|
+ getGroupCurrency()
|
|
|
}
|
|
|
|
|
|
override fun initTitle() {
|
|
@@ -329,6 +341,34 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
headerAdapter.setCurrencyCode(resourceResponse.data.creditCardPayment.paymentCurrencyName)
|
|
|
currencyId = resourceResponse.data.creditCardPayment.paymentCurrency
|
|
|
|
|
|
+ if (resourceResponse.data.rate.rate == 0.0 || resourceResponse.data.rate.toCurr == 0) {
|
|
|
+ headerAdapter.setOverPayCurrencyCode(resourceResponse.data.nationalTravelFee.currencyStr)
|
|
|
+ overPayCurrencyId = resourceResponse.data.nationalTravelFee.currency
|
|
|
+
|
|
|
+ headerAdapter.setOverPayExchangeRate("1")
|
|
|
+ overPayExchangeRate = 1.0
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ for (item in currencyList) {
|
|
|
+ if (resourceResponse.data.rate.toCurr == item.currencyId) {
|
|
|
+ headerAdapter.setOverPayCurrencyCode(item.currencyCode)
|
|
|
+ overPayCurrencyId = item.currencyId
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ headerAdapter.setOverPayExchangeRate(resourceResponse.data.rate.rate.toString())
|
|
|
+ overPayExchangeRate = resourceResponse.data.rate.rate
|
|
|
+ }
|
|
|
+
|
|
|
+ threeCurrencyId = resourceResponse.data.nationalTravelFee.currency
|
|
|
+ threeFoodCost = resourceResponse.data.nationalTravelFee.foodCost.toDouble() / 2
|
|
|
+ threeCurrencyCode = resourceResponse.data.nationalTravelFee.currencyStr
|
|
|
+
|
|
|
+ for (item in carTouristGuides) {
|
|
|
+ item.hint = setHintText()
|
|
|
+ }
|
|
|
+
|
|
|
if (resourceResponse.data.creditCardPayment.paymentCurrency != 0 && resourceResponse.data.creditCardPayment.paymentCurrencyName.isNotBlank()) {
|
|
|
for (item in carTouristGuides) {
|
|
|
item.currencyStr = resourceResponse.data.creditCardPayment.paymentCurrencyName
|
|
@@ -336,11 +376,7 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
currencySelect = true
|
|
|
}
|
|
|
|
|
|
- binding.paymentTotal.text = String.format(
|
|
|
- resources.getString(R.string.price_and_currency_format),
|
|
|
- totalPrice,
|
|
|
- headerAdapter.getCurrencyCode()
|
|
|
- )
|
|
|
+ binding.paymentTotal.text = String.format(resources.getString(R.string.price_and_currency_format), totalPrice, headerAdapter.getCurrencyCode())
|
|
|
|
|
|
footerAdapter.setPayee(resourceResponse.data.creditCardPayment.payee)
|
|
|
|
|
@@ -348,8 +384,7 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
|
|
|
footerAdapter.setPaymentMark(OASystem.paymentMark[resourceResponse.data.creditCardPayment.orbitalPrivateTransfer].name)
|
|
|
|
|
|
- paymentMarkId =
|
|
|
- resourceResponse.data.creditCardPayment.orbitalPrivateTransfer
|
|
|
+ paymentMarkId = resourceResponse.data.creditCardPayment.orbitalPrivateTransfer
|
|
|
|
|
|
paymentMarkSelect = true
|
|
|
|
|
@@ -366,7 +401,9 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- getGroupCurrency()
|
|
|
+ initViews()
|
|
|
+
|
|
|
+ initEvents()
|
|
|
|
|
|
} else {
|
|
|
showMessage(resourceResponse.msg)
|
|
@@ -397,9 +434,7 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
currencyList.add(item)
|
|
|
}
|
|
|
|
|
|
- initViews()
|
|
|
-
|
|
|
- initEvents()
|
|
|
+ getGroundConveyDetailResource()
|
|
|
|
|
|
} else {
|
|
|
showMessage(currencyResponse.msg)
|
|
@@ -463,6 +498,44 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
|
|
|
for ((i, item) in carTouristGuides.withIndex()) {
|
|
|
item.currencyStr = headerAdapter.getCurrencyCode()
|
|
|
+ item.hint = setHintText()
|
|
|
+ binding.paymentList.adapter!!.notifyItemChanged(i)
|
|
|
+ }
|
|
|
+
|
|
|
+ popupWindow.dismiss()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun onOverPayCurrencyClick() {
|
|
|
+ showSelector {
|
|
|
+ val selectorAdapter = ListAdapter.Builder<Selector>().apply {
|
|
|
+ setData(currencyList)
|
|
|
+ setLayoutId(R.layout.item_selector)
|
|
|
+ addBindView { itemView, data ->
|
|
|
+ itemView.findViewById<TextView>(R.id.selector_item_name).apply {
|
|
|
+ text = String.format(resources.getString(R.string.currency_name_code_format), data.currencyName, data.currencyCode)
|
|
|
+
|
|
|
+ if (overPayCurrencyId == data.currencyId) {
|
|
|
+ setTextColor(ResourcesCompat.getColor(resources, R.color.text_color_blue, null))
|
|
|
+ } else {
|
|
|
+ setTextColor(ResourcesCompat.getColor(resources, R.color.text_color, null))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }.create()
|
|
|
+
|
|
|
+ selector.adapter = selectorAdapter
|
|
|
+
|
|
|
+ selectorAdapter.onRecyclerViewItemClick =
|
|
|
+ object : ListAdapter.OnRecyclerViewItemClick<Selector> {
|
|
|
+ override fun onItemClick(position: Int) {
|
|
|
+ headerAdapter.setOverPayCurrencyCode(currencyList[position].currencyCode)
|
|
|
+ overPayCurrencyId = currencyList[position].currencyId
|
|
|
+
|
|
|
+ for ((i, item) in carTouristGuides.withIndex()) {
|
|
|
+ item.hint = setHintText()
|
|
|
binding.paymentList.adapter!!.notifyItemChanged(i)
|
|
|
}
|
|
|
|
|
@@ -570,6 +643,28 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ headerAdapter.onItemTextChanged = object : GroundConveyHeaderAdapter.OnItemTextChanged {
|
|
|
+ override fun onOverPayExchangeRateChanged() {
|
|
|
+
|
|
|
+ if (listInit) {
|
|
|
+
|
|
|
+ overPayExchangeRate = headerAdapter.getOverPayExchangeRate().toDouble()
|
|
|
+
|
|
|
+ val costExchange = threeFoodCost / overPayExchangeRate
|
|
|
+
|
|
|
+ val str = String.format(resources.getString(R.string.three_food_cost_hint), threeFoodCost, threeCurrencyCode, costExchange, headerAdapter.getCurrencyCode())
|
|
|
+
|
|
|
+
|
|
|
+ for ((i, item) in carTouristGuides.withIndex()) {
|
|
|
+
|
|
|
+ item.hint = str
|
|
|
+
|
|
|
+ binding.paymentList.adapter!!.notifyItemChanged(i)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
adapter = GroundConveyTableAdapter(showItemList)
|
|
|
adapter.setCanBeEdit(canBeEdit())
|
|
|
adapter.setHasStableIds(true)
|
|
@@ -717,6 +812,10 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
val concatAdapter = ConcatAdapter(headerAdapter, adapter, footerAdapter)
|
|
|
|
|
|
binding.paymentList.adapter = concatAdapter
|
|
|
+
|
|
|
+ binding.paymentList.post {
|
|
|
+ listInit = true
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
private fun updateGroundConveyDetail() {
|
|
@@ -749,6 +848,9 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
// writer.flush()
|
|
|
// writer.close()
|
|
|
|
|
|
+ updateGroundConveyDetailRequest.toCurr = overPayCurrencyId
|
|
|
+ updateGroundConveyDetailRequest.rate = overPayExchangeRate
|
|
|
+
|
|
|
apiService.updateGroundConveyDetail(updateGroundConveyDetailRequest)
|
|
|
.enqueue(object : Callback<BaseResponse> {
|
|
|
override fun onResponse(
|
|
@@ -804,4 +906,9 @@ class GroundConveyPaymentDetailActivity : BaseActivity<ActivityGroundConveyPayme
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ private fun setHintText(): String{
|
|
|
+
|
|
|
+ return String.format(resources.getString(R.string.three_food_cost_hint), threeFoodCost, threeCurrencyCode, threeFoodCost / overPayExchangeRate, headerAdapter.getCurrencyCode())
|
|
|
+ }
|
|
|
}
|