|
@@ -13,9 +13,9 @@ import com.pan_american.android.base.BaseResponse
|
|
|
import com.pan_american.android.base.CardAdapter
|
|
|
import com.pan_american.android.base.CustomAlertDialog
|
|
|
import com.pan_american.android.data.model.common.network.DeleteRequest
|
|
|
-import com.pan_american.android.data.model.resource_management.hotel_resource.entity.HotelResource
|
|
|
-import com.pan_american.android.data.model.resource_management.hotel_resource.network.HotelResourceRequest
|
|
|
-import com.pan_american.android.data.model.resource_management.hotel_resource.network.HotelResourceResponse
|
|
|
+import com.pan_american.android.data.model.resource_management.hotel_resource.entity.UpdateHotelResource
|
|
|
+import com.pan_american.android.data.model.resource_management.hotel_resource.network.HotelResourceListRequest
|
|
|
+import com.pan_american.android.data.model.resource_management.hotel_resource.network.HotelResourceListResponse
|
|
|
import com.pan_american.android.data.network.APIService
|
|
|
import com.pan_american.android.data.network.ServiceCreator
|
|
|
import com.pan_american.android.databinding.FragmentHotelResourceListBinding
|
|
@@ -31,11 +31,11 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
|
|
|
val apiService = ServiceCreator.create<APIService>()
|
|
|
|
|
|
- private var hotelList = ArrayList<HotelResource>()
|
|
|
+ private var hotelList = ArrayList<UpdateHotelResource>()
|
|
|
|
|
|
private var listInit = false
|
|
|
|
|
|
- private lateinit var hotelResourceRequest: HotelResourceRequest
|
|
|
+ private lateinit var hotelResourceListRequest: HotelResourceListRequest
|
|
|
|
|
|
private var pageIndex = 1
|
|
|
|
|
@@ -49,7 +49,7 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
super.onStart()
|
|
|
|
|
|
requireArguments().apply {
|
|
|
- hotelResourceRequest = HotelResourceRequest(
|
|
|
+ hotelResourceListRequest = HotelResourceListRequest(
|
|
|
getString("hotel_name").toString(),
|
|
|
getString("hotel_location").toString(),
|
|
|
getString("contacts_name").toString(),
|
|
@@ -57,8 +57,8 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
)
|
|
|
}
|
|
|
|
|
|
- hotelResourceRequest.pageIndex = pageIndex
|
|
|
- hotelResourceRequest.pageSize = 10
|
|
|
+ hotelResourceListRequest.pageIndex = pageIndex
|
|
|
+ hotelResourceListRequest.pageSize = 10
|
|
|
|
|
|
initViews()
|
|
|
}
|
|
@@ -77,15 +77,15 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
}
|
|
|
|
|
|
if (!listInit) {
|
|
|
- apiService.getHotelData(hotelResourceRequest)
|
|
|
- .enqueue(object : Callback<HotelResourceResponse> {
|
|
|
+ apiService.getHotelResourceList(hotelResourceListRequest)
|
|
|
+ .enqueue(object : Callback<HotelResourceListResponse> {
|
|
|
override fun onResponse(
|
|
|
- call: Call<HotelResourceResponse>, response: Response<HotelResourceResponse>
|
|
|
+ call: Call<HotelResourceListResponse>, response: Response<HotelResourceListResponse>
|
|
|
) {
|
|
|
val guideResourceResponse = response.body()
|
|
|
if (guideResourceResponse != null) {
|
|
|
if (guideResourceResponse.code == 200) {
|
|
|
- for (item in guideResourceResponse.data.pageSource) {
|
|
|
+ for (item in guideResourceResponse.data) {
|
|
|
hotelList.add(item)
|
|
|
}
|
|
|
|
|
@@ -96,23 +96,29 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
|
|
|
when (type) {
|
|
|
1 -> {
|
|
|
- totalPage = guideResourceResponse.data.totalPage
|
|
|
- binding.hotelResourceListContainer.setEnableLoadMore(pageIndex < totalPage)
|
|
|
+ totalPage = getTotalPage(guideResourceResponse.count)
|
|
|
+ binding.hotelResourceListContainer.setEnableLoadMore(
|
|
|
+ pageIndex < totalPage
|
|
|
+ )
|
|
|
listInit = true
|
|
|
initList()
|
|
|
}
|
|
|
|
|
|
2 -> {
|
|
|
binding.hotelResourceListContainer.finishRefresh()
|
|
|
- totalPage = guideResourceResponse.data.totalPage
|
|
|
- binding.hotelResourceListContainer.setEnableLoadMore(pageIndex < totalPage)
|
|
|
+ totalPage = getTotalPage(guideResourceResponse.count)
|
|
|
+ binding.hotelResourceListContainer.setEnableLoadMore(
|
|
|
+ pageIndex < totalPage
|
|
|
+ )
|
|
|
initList()
|
|
|
listInit = true
|
|
|
}
|
|
|
|
|
|
3 -> {
|
|
|
binding.hotelResourceListContainer.finishLoadMore()
|
|
|
- binding.hotelResourceListContainer.setEnableLoadMore(pageIndex < totalPage)
|
|
|
+ binding.hotelResourceListContainer.setEnableLoadMore(
|
|
|
+ pageIndex < totalPage
|
|
|
+ )
|
|
|
binding.hotelResourceList.adapter!!.notifyItemInserted(
|
|
|
hotelList.size
|
|
|
)
|
|
@@ -125,14 +131,14 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- override fun onFailure(call: Call<HotelResourceResponse>, t: Throwable) {
|
|
|
+ override fun onFailure(call: Call<HotelResourceListResponse>, t: Throwable) {
|
|
|
showErrorInfo(R.string.hotel_resource_list_get_failed)
|
|
|
}
|
|
|
})
|
|
|
} else {
|
|
|
if (OASystem.needRefresh) {
|
|
|
pageIndex = 1
|
|
|
- hotelResourceRequest.pageIndex = pageIndex
|
|
|
+ hotelResourceListRequest.pageIndex = pageIndex
|
|
|
hotelList.clear()
|
|
|
listInit = false
|
|
|
initHotelResourceList(2)
|
|
@@ -145,26 +151,35 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
val layoutManager = LinearLayoutManager(OASystem.context)
|
|
|
binding.hotelResourceList.layoutManager = layoutManager
|
|
|
|
|
|
- val adapter = CardAdapter.Builder<HotelResource>().apply {
|
|
|
+ val adapter = CardAdapter.Builder<UpdateHotelResource>().apply {
|
|
|
setLayoutId(R.layout.item_hotel_list)
|
|
|
setData(hotelList)
|
|
|
setCanDelete(OASystem.authorization(OASystem.HOTEL_RESOURCE, OASystem.DELETE))
|
|
|
addBindView { itemView, data ->
|
|
|
itemView.findViewById<TextView>(R.id.hotel_name).text = data.name
|
|
|
itemView.findViewById<TextView>(R.id.hotel_location).text = data.city
|
|
|
- itemView.findViewById<TextView>(R.id.hotel_phone).text = data.tel
|
|
|
- itemView.findViewById<TextView>(R.id.hotel_level).text = data.level
|
|
|
- itemView.findViewById<TextView>(R.id.create_time).text = data.createTime
|
|
|
+ if (data.tel.isNotBlank()) {
|
|
|
+ itemView.findViewById<TextView>(R.id.hotel_phone).text = data.tel
|
|
|
+ }
|
|
|
+ if (data.fax.isNotBlank()) {
|
|
|
+ itemView.findViewById<TextView>(R.id.hotel_fax).text = data.fax
|
|
|
+ }
|
|
|
+ if (data.contact.isNotBlank()){
|
|
|
+ itemView.findViewById<TextView>(R.id.contacts).text = data.contact
|
|
|
+ }
|
|
|
+ if (data.contactPhone.isNotBlank()) {
|
|
|
+ itemView.findViewById<TextView>(R.id.contacts_phone).text = data.contactPhone
|
|
|
+ }
|
|
|
}
|
|
|
}.create()
|
|
|
binding.hotelResourceList.adapter = adapter
|
|
|
|
|
|
adapter.onRecyclerViewItemClick =
|
|
|
- object : CardAdapter.OnRecyclerViewItemClick<HotelResource> {
|
|
|
+ object : CardAdapter.OnRecyclerViewItemClick<UpdateHotelResource> {
|
|
|
override fun onItemClick(position: Int) {
|
|
|
val intent =
|
|
|
Intent(OASystem.context, AddHotelResourceActivity::class.java).apply {
|
|
|
- putExtra("hotelResource", hotelList[position])
|
|
|
+ putExtra("id", hotelList[position].id)
|
|
|
putExtra("fromList", true)
|
|
|
}
|
|
|
|
|
@@ -195,7 +210,7 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
OnRefreshLoadMoreListener {
|
|
|
override fun onRefresh(refreshLayout: RefreshLayout) {
|
|
|
pageIndex = 1
|
|
|
- hotelResourceRequest.pageIndex = pageIndex
|
|
|
+ hotelResourceListRequest.pageIndex = pageIndex
|
|
|
hotelList.clear()
|
|
|
listInit = false
|
|
|
initHotelResourceList(2)
|
|
@@ -204,7 +219,7 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
override fun onLoadMore(refreshLayout: RefreshLayout) {
|
|
|
if (pageIndex < totalPage) {
|
|
|
pageIndex += 1
|
|
|
- hotelResourceRequest.pageIndex = pageIndex
|
|
|
+ hotelResourceListRequest.pageIndex = pageIndex
|
|
|
listInit = false
|
|
|
initHotelResourceList(3)
|
|
|
}
|
|
@@ -241,4 +256,12 @@ class HotelResourceListFragment : BaseFragment<FragmentHotelResourceListBinding>
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+ private fun getTotalPage(dataCount: Int): Int {
|
|
|
+ var totalPage = dataCount / 10
|
|
|
+ if (dataCount % 10 != 0) {
|
|
|
+ totalPage++
|
|
|
+ }
|
|
|
+
|
|
|
+ return totalPage
|
|
|
+ }
|
|
|
}
|