|
@@ -43,10 +43,6 @@ class AirplaneTicketListFragment : BaseFragment<FragmentAirplaneTicketListBindin
|
|
|
|
|
|
private val apiService = ServiceCreator.create<APIService>()
|
|
|
|
|
|
- private var currencyInit = false
|
|
|
-
|
|
|
- private var listInit = false
|
|
|
-
|
|
|
private var pageIndex = 1
|
|
|
|
|
|
private var totalPage = 0
|
|
@@ -72,6 +68,21 @@ class AirplaneTicketListFragment : BaseFragment<FragmentAirplaneTicketListBindin
|
|
|
}
|
|
|
|
|
|
getGroupCurrency()
|
|
|
+
|
|
|
+ initEvents()
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun onStart() {
|
|
|
+ super.onStart()
|
|
|
+
|
|
|
+ if (OASystem.needRefresh) {
|
|
|
+ pageIndex = 1
|
|
|
+ airplaneTicketListRequest.pageIndex = pageIndex
|
|
|
+ airplaneTicketList.clear()
|
|
|
+ getAirplaneTicketPaymentList(2)
|
|
|
+
|
|
|
+ OASystem.needRefresh = false
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
override fun initViews() {
|
|
@@ -128,44 +139,34 @@ class AirplaneTicketListFragment : BaseFragment<FragmentAirplaneTicketListBindin
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if (!currencyInit) {
|
|
|
-
|
|
|
- apiService.getGroupCurrency(GroupCurrencyRequest(groupId, 85))
|
|
|
- .enqueue(object : Callback<GroupCurrencyResponse> {
|
|
|
- override fun onResponse(
|
|
|
- call: Call<GroupCurrencyResponse>, response: Response<GroupCurrencyResponse>
|
|
|
- ) {
|
|
|
-
|
|
|
- val currencyResponse = response.body()
|
|
|
+ apiService.getGroupCurrency(GroupCurrencyRequest(groupId, 85))
|
|
|
+ .enqueue(object : Callback<GroupCurrencyResponse> {
|
|
|
+ override fun onResponse(
|
|
|
+ call: Call<GroupCurrencyResponse>, response: Response<GroupCurrencyResponse>
|
|
|
+ ) {
|
|
|
|
|
|
- if (currencyResponse != null) {
|
|
|
- if (currencyResponse.code == 200) {
|
|
|
- OASystem.currency.clear()
|
|
|
+ val currencyResponse = response.body()
|
|
|
|
|
|
- for (item in currencyResponse.data.teamRates) {
|
|
|
- OASystem.currency.add(item)
|
|
|
- }
|
|
|
+ if (currencyResponse != null) {
|
|
|
+ if (currencyResponse.code == 200) {
|
|
|
+ OASystem.currency.clear()
|
|
|
|
|
|
- currencyInit = true
|
|
|
+ for (item in currencyResponse.data.teamRates) {
|
|
|
+ OASystem.currency.add(item)
|
|
|
+ }
|
|
|
|
|
|
- initViews()
|
|
|
- initEvents()
|
|
|
+ initViews()
|
|
|
|
|
|
- } else {
|
|
|
- showMessage(currencyResponse.msg)
|
|
|
- }
|
|
|
+ } else {
|
|
|
+ showMessage(currencyResponse.msg)
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- override fun onFailure(call: Call<GroupCurrencyResponse>, t: Throwable) {
|
|
|
- showErrorInfo(R.string.group_currency_get_failed)
|
|
|
- }
|
|
|
- })
|
|
|
-
|
|
|
- } else {
|
|
|
- initViews()
|
|
|
- initEvents()
|
|
|
- }
|
|
|
+ override fun onFailure(call: Call<GroupCurrencyResponse>, t: Throwable) {
|
|
|
+ showErrorInfo(R.string.group_currency_get_failed)
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
private fun getAirplaneTicketPaymentList(type: Int) {
|
|
@@ -175,82 +176,69 @@ class AirplaneTicketListFragment : BaseFragment<FragmentAirplaneTicketListBindin
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- if (!listInit) {
|
|
|
- apiService.getGroupAirplaneTicketListItem(airplaneTicketListRequest)
|
|
|
- .enqueue(object : Callback<AirplaneTicketListResponse> {
|
|
|
- override fun onResponse(
|
|
|
- call: Call<AirplaneTicketListResponse>,
|
|
|
- response: Response<AirplaneTicketListResponse>
|
|
|
- ) {
|
|
|
+ apiService.getGroupAirplaneTicketListItem(airplaneTicketListRequest)
|
|
|
+ .enqueue(object : Callback<AirplaneTicketListResponse> {
|
|
|
+ override fun onResponse(
|
|
|
+ call: Call<AirplaneTicketListResponse>,
|
|
|
+ response: Response<AirplaneTicketListResponse>
|
|
|
+ ) {
|
|
|
+
|
|
|
+ val airplaneTicketListResponse = response.body()
|
|
|
|
|
|
- val airplaneTicketListResponse = response.body()
|
|
|
+ if (airplaneTicketListResponse != null) {
|
|
|
+ if (airplaneTicketListResponse.code == 200) {
|
|
|
+ for (item in airplaneTicketListResponse.data.airData.dataList) {
|
|
|
+ airplaneTicketList.add(item)
|
|
|
+ }
|
|
|
+
|
|
|
+ if (airplaneTicketList.size == 0) {
|
|
|
+ showMessage(resources.getString(R.string.no_data))
|
|
|
+ }
|
|
|
|
|
|
- if (airplaneTicketListResponse != null) {
|
|
|
- if (airplaneTicketListResponse.code == 200) {
|
|
|
- for (item in airplaneTicketListResponse.data.airData.dataList) {
|
|
|
- airplaneTicketList.add(item)
|
|
|
+ when (type) {
|
|
|
+ 1 -> {
|
|
|
+ totalPage = getTotalPage(
|
|
|
+ airplaneTicketListResponse.data.airData.dataCount,
|
|
|
+ airplaneTicketListResponse.data.airData.currPageSize
|
|
|
+ )
|
|
|
+ binding.airplaneTicketPaymentContainer.setEnableLoadMore(
|
|
|
+ pageIndex < totalPage
|
|
|
+ )
|
|
|
+ initList()
|
|
|
}
|
|
|
|
|
|
- if (airplaneTicketList.size == 0) {
|
|
|
- showMessage(resources.getString(R.string.no_data))
|
|
|
+ 2 -> {
|
|
|
+ binding.airplaneTicketPaymentContainer.finishRefresh()
|
|
|
+ totalPage = getTotalPage(
|
|
|
+ airplaneTicketListResponse.data.airData.dataCount,
|
|
|
+ airplaneTicketListResponse.data.airData.currPageSize
|
|
|
+ )
|
|
|
+ binding.airplaneTicketPaymentContainer.setEnableLoadMore(
|
|
|
+ pageIndex < totalPage
|
|
|
+ )
|
|
|
+ initList()
|
|
|
}
|
|
|
|
|
|
- when (type) {
|
|
|
- 1 -> {
|
|
|
- totalPage = getTotalPage(
|
|
|
- airplaneTicketListResponse.data.airData.dataCount,
|
|
|
- airplaneTicketListResponse.data.airData.currPageSize
|
|
|
- )
|
|
|
- binding.airplaneTicketPaymentContainer.setEnableLoadMore(
|
|
|
- pageIndex < totalPage
|
|
|
- )
|
|
|
- initList()
|
|
|
- listInit = true
|
|
|
- }
|
|
|
-
|
|
|
- 2 -> {
|
|
|
- binding.airplaneTicketPaymentContainer.finishRefresh()
|
|
|
- totalPage = getTotalPage(
|
|
|
- airplaneTicketListResponse.data.airData.dataCount,
|
|
|
- airplaneTicketListResponse.data.airData.currPageSize
|
|
|
- )
|
|
|
- binding.airplaneTicketPaymentContainer.setEnableLoadMore(
|
|
|
- pageIndex < totalPage
|
|
|
- )
|
|
|
- initList()
|
|
|
- listInit = true
|
|
|
- }
|
|
|
-
|
|
|
- 3 -> {
|
|
|
- binding.airplaneTicketPaymentContainer.finishLoadMore()
|
|
|
- binding.airplaneTicketPaymentContainer.setEnableLoadMore(
|
|
|
- pageIndex < totalPage
|
|
|
- )
|
|
|
- binding.airplaneTicketPaymentList.adapter!!.notifyItemInserted(
|
|
|
- airplaneTicketList.size
|
|
|
- )
|
|
|
- listInit = true
|
|
|
- }
|
|
|
+ 3 -> {
|
|
|
+ binding.airplaneTicketPaymentContainer.finishLoadMore()
|
|
|
+ binding.airplaneTicketPaymentContainer.setEnableLoadMore(
|
|
|
+ pageIndex < totalPage
|
|
|
+ )
|
|
|
+ binding.airplaneTicketPaymentList.adapter!!.notifyItemInserted(
|
|
|
+ airplaneTicketList.size
|
|
|
+ )
|
|
|
}
|
|
|
- } else {
|
|
|
- showMessage(airplaneTicketListResponse.msg)
|
|
|
}
|
|
|
+ } else {
|
|
|
+ showMessage(airplaneTicketListResponse.msg)
|
|
|
}
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- override fun onFailure(call: Call<AirplaneTicketListResponse>, t: Throwable) {
|
|
|
- showErrorInfo(R.string.airplane_ticket_list_get_failed)
|
|
|
- }
|
|
|
- })
|
|
|
- } else {
|
|
|
- if (OASystem.needRefresh) {
|
|
|
- pageIndex = 1
|
|
|
- airplaneTicketListRequest.pageIndex = pageIndex
|
|
|
- airplaneTicketList.clear()
|
|
|
- listInit = false
|
|
|
- getAirplaneTicketPaymentList(2)
|
|
|
- }
|
|
|
- }
|
|
|
+ override fun onFailure(call: Call<AirplaneTicketListResponse>, t: Throwable) {
|
|
|
+ showErrorInfo(R.string.airplane_ticket_list_get_failed)
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
private fun getTotalPage(dataCount: Int, pageSize: Int): Int {
|
|
@@ -376,7 +364,6 @@ class AirplaneTicketListFragment : BaseFragment<FragmentAirplaneTicketListBindin
|
|
|
airplaneTicketListRequest.pageIndex = pageIndex
|
|
|
binding.airplaneTicketPaymentList.adapter!!.notifyItemRangeRemoved(0, airplaneTicketList.size)
|
|
|
airplaneTicketList.clear()
|
|
|
- listInit = false
|
|
|
getAirplaneTicketPaymentList(2)
|
|
|
}
|
|
|
|
|
@@ -384,7 +371,6 @@ class AirplaneTicketListFragment : BaseFragment<FragmentAirplaneTicketListBindin
|
|
|
if (pageIndex < totalPage) {
|
|
|
pageIndex += 1
|
|
|
airplaneTicketListRequest.pageIndex = pageIndex
|
|
|
- listInit = false
|
|
|
getAirplaneTicketPaymentList(3)
|
|
|
}
|
|
|
}
|