feat: refs #8175 updateLibraries
This commit is contained in:
parent
01aa6eaab6
commit
88ef5230f9
|
@ -44,7 +44,6 @@ class ExpeditionPalletDetailFragment(
|
|||
override fun getLayoutId(): Int = R.layout.fragment_expedition_pallet_detail
|
||||
|
||||
override fun init() {
|
||||
println("ExpeditionPalletDetail")
|
||||
customDialog = CustomDialog(requireContext())
|
||||
binding.expeditionPalletDetailPallet.text =
|
||||
buildString {
|
||||
|
|
|
@ -59,7 +59,6 @@ class ExpeditionPalletFragment(
|
|||
override fun getLayoutId(): Int = R.layout.fragment_expedition_pallet
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
println("ExpeditionPalletFragment")
|
||||
mperror = MediaPlayer.create((activity as MainActivity), R.raw.error)
|
||||
mpok = MediaPlayer.create((activity as MainActivity), R.raw.ok)
|
||||
super.onCreate(savedInstanceState)
|
||||
|
@ -214,8 +213,6 @@ class ExpeditionPalletFragment(
|
|||
if (mperror != null) mperror!!.start()
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
customDialogList.setValue("")
|
||||
ma.hideKeyboard(customDialogList.getEditText())
|
||||
|
|
|
@ -71,7 +71,6 @@ class ExpeditionScanFragment(
|
|||
}
|
||||
|
||||
override fun init() {
|
||||
println("ExpeditionScanFragment")
|
||||
customDialog = CustomDialog(requireContext())
|
||||
customDialogList = CustomDialogList(requireContext())
|
||||
customDialogTwoButtons = CustomDialogTwoButtons(requireContext())
|
||||
|
@ -80,7 +79,11 @@ class ExpeditionScanFragment(
|
|||
)
|
||||
ma.hideBottomNavigation(View.GONE)
|
||||
binding.mainToolbar.toolbarTitle.text =
|
||||
getString(R.string.expeditionInfo, itemExpeditionTruckVO?.eta.orEmpty(), itemExpeditionTruckVO?.description.orEmpty())
|
||||
getString(
|
||||
R.string.expeditionInfo,
|
||||
itemExpeditionTruckVO?.eta.orEmpty(),
|
||||
itemExpeditionTruckVO?.description.orEmpty()
|
||||
)
|
||||
setToolBar()
|
||||
setEvents()
|
||||
viewModel.expeditionScanList(
|
||||
|
@ -121,7 +124,6 @@ class ExpeditionScanFragment(
|
|||
LinearLayoutManager(requireContext(), LinearLayoutManager.HORIZONTAL, false)
|
||||
}
|
||||
|
||||
|
||||
override fun observeViewModel() {
|
||||
with(viewModel) {
|
||||
loadExpeditionScanList.observe(viewLifecycleOwner) { event ->
|
||||
|
|
Loading…
Reference in New Issue