Versión 6.1.6 control vehículos, visualizar ticket y filtro basura y faltas
This commit is contained in:
parent
9e0d6d3eb1
commit
e64109887b
|
@ -14,11 +14,11 @@ class PasilleroViewModel(context: Context) : BaseViewModel() {
|
|||
|
||||
fun inititializeDefaultData() {
|
||||
|
||||
/* _pasillerositem.add(
|
||||
_pasillerositem.add(
|
||||
PasillerosItemVO(20,
|
||||
R.drawable.ic_loyalty_black_24dp,
|
||||
"Asociar Sacador SmartTags",R.string.SmarttagAssociate)
|
||||
)*/
|
||||
)
|
||||
|
||||
|
||||
_pasillerositem.add(
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
package es.verdnatura.presentation.view.feature.smarttag.sacador.fragment
|
||||
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import android.graphics.drawable.Drawable
|
||||
|
@ -20,7 +22,6 @@ import es.verdnatura.presentation.view.component.CustomDialogThreeButtons
|
|||
import es.verdnatura.presentation.view.feature.inventario.adapter.ToolBarAdapter
|
||||
import es.verdnatura.presentation.view.feature.main.activity.MainActivity
|
||||
import es.verdnatura.presentation.view.feature.pasillero.model.PasillerosItemVO
|
||||
import es.verdnatura.presentation.view.feature.smarttag.sacador.AssociateTagsViewModel
|
||||
import kotlinx.android.synthetic.main.component_custom_three_dialog.*
|
||||
import kotlinx.android.synthetic.main.fragment_collection.*
|
||||
import kotlinx.android.synthetic.main.fragment_controlador.*
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package es.verdnatura.presentation.view.feature.smarttag.sacador
|
||||
package es.verdnatura.presentation.view.feature.smarttag.sacador.fragment
|
||||
|
||||
import android.content.Context
|
||||
import android.util.Log
|
||||
import androidx.lifecycle.LiveData
|
||||
import androidx.lifecycle.MutableLiveData
|
||||
import es.verdnatura.domain.GetVehicleControlTimeUserCase
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
package es.verdnatura.presentation.view.feature.smarttag.sacador.model
|
||||
|
||||
|
||||
class SmartTagScan (
|
||||
var expeditionFk:String = "",
|
||||
var palletFk:String = "",
|
||||
var isError:Boolean = false,
|
||||
var errorMessage:String = ""
|
||||
)
|
||||
|
||||
class SmartTagScanList(
|
||||
var list:List<SmartTagScan> = listOf()
|
||||
)
|
||||
/*
|
||||
class ItemExpeditionScanVO(
|
||||
var id:String = "",
|
||||
var expeditionFk:String = "",
|
||||
var Ruta:String = "",
|
||||
var Ticket:String = "",
|
||||
var Caja:String = "",
|
||||
var isError:Boolean = false,
|
||||
var errorMessage:String = ""
|
||||
)
|
||||
|
||||
class ItemExpeditionScanList(
|
||||
var list:List<ItemExpeditionScanVO> = listOf()
|
||||
)*/
|
||||
|
Loading…
Reference in New Issue