feat roadMap #refs 7195
This commit is contained in:
parent
43a2eecf3f
commit
7ba19ba370
|
@ -97,6 +97,7 @@ class PasilleroFragment(
|
||||||
getString(R.string.main) -> viewModel.inititializeDefaultDataInit()
|
getString(R.string.main) -> viewModel.inititializeDefaultDataInit()
|
||||||
getString(R.string.titleClaims) -> viewModel.inititializeDefaultClaim()
|
getString(R.string.titleClaims) -> viewModel.inititializeDefaultClaim()
|
||||||
getString(R.string.titleDelivery) -> viewModel.inititializeDefaultDelivery()
|
getString(R.string.titleDelivery) -> viewModel.inititializeDefaultDelivery()
|
||||||
|
getString(R.string.titleDeliveryTruck) -> viewModel.inititializeDefaultDeliveryTruck()
|
||||||
getString(R.string.titlePrevious) -> viewModel.inititializeDefaultPrevia()
|
getString(R.string.titlePrevious) -> viewModel.inititializeDefaultPrevia()
|
||||||
getString(R.string.titleControllers) -> viewModel.inititializeDefaultChecker()
|
getString(R.string.titleControllers) -> viewModel.inititializeDefaultChecker()
|
||||||
getString(R.string.titleOther) -> viewModel.inititializeDefaultOther()
|
getString(R.string.titleOther) -> viewModel.inititializeDefaultOther()
|
||||||
|
|
|
@ -437,7 +437,6 @@ class PasilleroViewModel(context: Context) : BaseViewModel(context) {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if (userId == 19591 || userId == 9) {
|
|
||||||
_pasillerositem.add(
|
_pasillerositem.add(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
6,
|
6,
|
||||||
|
@ -447,7 +446,7 @@ class PasilleroViewModel(context: Context) : BaseViewModel(context) {
|
||||||
contextApp.getString(R.string.titleDeliveryTruck)
|
contextApp.getString(R.string.titleDeliveryTruck)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
|
||||||
//#tarea4021
|
//#tarea4021
|
||||||
|
|
||||||
_pasillerositem.add(
|
_pasillerositem.add(
|
||||||
|
@ -537,8 +536,21 @@ class PasilleroViewModel(context: Context) : BaseViewModel(context) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun inititializeDefaultPrevia() {
|
fun inititializeDefaultDeliveryTruck() {
|
||||||
|
|
||||||
|
_pasillerositem.add(
|
||||||
|
PasillerosItemVO(
|
||||||
|
6,
|
||||||
|
R.drawable.ic_troncales,
|
||||||
|
contextApp.getString(R.string.titleDeliveryTruck),
|
||||||
|
R.string.titleDeliveryTruck,
|
||||||
|
contextApp.getString(R.string.titleDeliveryTruck)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
fun inititializeDefaultPrevia() {
|
||||||
if (isOnReservationMode){
|
if (isOnReservationMode){
|
||||||
// if (userId == 19591 || userId == 18404 || userId == 9) {
|
// if (userId == 19591 || userId == 18404 || userId == 9) {
|
||||||
_pasillerositem.add(
|
_pasillerositem.add(
|
||||||
|
@ -608,7 +620,6 @@ class PasilleroViewModel(context: Context) : BaseViewModel(context) {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
if (userId == 19591 || userId == 9) {
|
|
||||||
_pasillerositem.add(
|
_pasillerositem.add(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
1,
|
1,
|
||||||
|
@ -620,7 +631,6 @@ class PasilleroViewModel(context: Context) : BaseViewModel(context) {
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
|
||||||
|
|
||||||
_pasillerositem.add(
|
_pasillerositem.add(
|
||||||
PasillerosItemVO(
|
PasillerosItemVO(
|
||||||
|
|
Loading…
Reference in New Issue