feat: boxPicking refs #7855
This commit is contained in:
parent
e6cf5ef2fb
commit
c4bbffc98f
|
@ -1,5 +1,7 @@
|
||||||
package es.verdnatura.presentation.view.feature.paletizador.fragment
|
package es.verdnatura.presentation.view.feature.paletizador.fragment
|
||||||
|
|
||||||
|
import android.content.pm.ActivityInfo
|
||||||
|
import android.os.Bundle
|
||||||
import android.view.KeyEvent
|
import android.view.KeyEvent
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.inputmethod.EditorInfo
|
import android.view.inputmethod.EditorInfo
|
||||||
|
@ -15,7 +17,7 @@ import es.verdnatura.presentation.view.feature.delivery.viewmodels.DeliveryViewM
|
||||||
import es.verdnatura.presentation.view.feature.ubicador.adapter.AutomaticAdapter
|
import es.verdnatura.presentation.view.feature.ubicador.adapter.AutomaticAdapter
|
||||||
|
|
||||||
@Suppress("UNUSED_ANONYMOUS_PARAMETER")
|
@Suppress("UNUSED_ANONYMOUS_PARAMETER")
|
||||||
class ExpeditionPreparedStateFragment(var codeState: String, var title: String) :
|
class ExpeditionPreparedStateFragment(var codeState: String = "PREPARED", var title: String = "") :
|
||||||
BaseFragment<FragmentAutomaticAddExpeditionBinding, DeliveryViewModel>(
|
BaseFragment<FragmentAutomaticAddExpeditionBinding, DeliveryViewModel>(
|
||||||
DeliveryViewModel::class
|
DeliveryViewModel::class
|
||||||
) {
|
) {
|
||||||
|
@ -29,9 +31,20 @@ class ExpeditionPreparedStateFragment(var codeState: String, var title: String)
|
||||||
companion object {
|
companion object {
|
||||||
fun newInstance(codeState: String, title: String) =
|
fun newInstance(codeState: String, title: String) =
|
||||||
ExpeditionPreparedStateFragment(codeState = codeState, title = title)
|
ExpeditionPreparedStateFragment(codeState = codeState, title = title)
|
||||||
|
|
||||||
|
fun newInstance() = ExpeditionPreparedStateFragment()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getLayoutId(): Int = R.layout.fragment_automatic_add_expedition
|
override fun getLayoutId(): Int = R.layout.fragment_automatic_add_expedition
|
||||||
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
|
super.onViewCreated(view, savedInstanceState)
|
||||||
|
activity?.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_SENSOR_PORTRAIT
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroyView() {
|
||||||
|
super.onDestroyView()
|
||||||
|
activity?.requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
|
||||||
|
}
|
||||||
|
|
||||||
override fun init() {
|
override fun init() {
|
||||||
ma.hideBottomNavigation(View.GONE)
|
ma.hideBottomNavigation(View.GONE)
|
||||||
|
|
Loading…
Reference in New Issue