feat reservas #refs 6861
This commit is contained in:
parent
59fe13f151
commit
a2451bf825
|
@ -10,6 +10,7 @@ import es.verdnatura.presentation.view.feature.ajustes.model.SectorItemVO
|
||||||
import es.verdnatura.presentation.view.feature.ajustes.model.Train
|
import es.verdnatura.presentation.view.feature.ajustes.model.Train
|
||||||
import es.verdnatura.presentation.view.feature.articulo.model.AddressLoses
|
import es.verdnatura.presentation.view.feature.articulo.model.AddressLoses
|
||||||
import es.verdnatura.presentation.view.feature.articulo.model.ItemCardVO
|
import es.verdnatura.presentation.view.feature.articulo.model.ItemCardVO
|
||||||
|
import es.verdnatura.presentation.view.feature.articulo.model.ItemDetails
|
||||||
import es.verdnatura.presentation.view.feature.articulo.model.ItemPackingType
|
import es.verdnatura.presentation.view.feature.articulo.model.ItemPackingType
|
||||||
import es.verdnatura.presentation.view.feature.articulo.model.ItemProposal
|
import es.verdnatura.presentation.view.feature.articulo.model.ItemProposal
|
||||||
import es.verdnatura.presentation.view.feature.buscaritem.model.ItemLocationVO
|
import es.verdnatura.presentation.view.feature.buscaritem.model.ItemLocationVO
|
||||||
|
@ -58,6 +59,9 @@ import es.verdnatura.presentation.view.feature.sacador.model.CollectionVO
|
||||||
import es.verdnatura.presentation.view.feature.sacador.model.MistakeTypeVO
|
import es.verdnatura.presentation.view.feature.sacador.model.MistakeTypeVO
|
||||||
import es.verdnatura.presentation.view.feature.sacador.model.PlacementSupplyVO
|
import es.verdnatura.presentation.view.feature.sacador.model.PlacementSupplyVO
|
||||||
import es.verdnatura.presentation.view.feature.sacador.model.TicketStateSalix
|
import es.verdnatura.presentation.view.feature.sacador.model.TicketStateSalix
|
||||||
|
import es.verdnatura.presentation.view.feature.truck.model.RoadMapTruck
|
||||||
|
import es.verdnatura.presentation.view.feature.truck.model.StopMapTruck
|
||||||
|
import es.verdnatura.presentation.view.feature.truck.model.StopMapTruckPallet
|
||||||
import es.verdnatura.presentation.view.feature.ubicador.model.ItemUbicador
|
import es.verdnatura.presentation.view.feature.ubicador.model.ItemUbicador
|
||||||
import es.verdnatura.presentation.view.feature.ubicador.model.ItemUbicadorVO
|
import es.verdnatura.presentation.view.feature.ubicador.model.ItemUbicadorVO
|
||||||
import es.verdnatura.presentation.view.feature.workermistake.model.DepartmentMistake
|
import es.verdnatura.presentation.view.feature.workermistake.model.DepartmentMistake
|
||||||
|
@ -176,7 +180,7 @@ interface SalixService {
|
||||||
@Query("params") params: Any? = null
|
@Query("params") params: Any? = null
|
||||||
): Call<Any>
|
): Call<Any>
|
||||||
|
|
||||||
@POST("Applications/itemShelvingSale_reserveBySectorCollection/execute-proc")
|
@POST("Applications/itemShelvingSale_addBySectorCollection/execute-proc") // PERMISOS GRANT
|
||||||
fun getReserveBySectorCollection(
|
fun getReserveBySectorCollection(
|
||||||
@Query("schema") schema: String = "vn",
|
@Query("schema") schema: String = "vn",
|
||||||
@Query("params") params: Any? = null
|
@Query("params") params: Any? = null
|
||||||
|
@ -218,6 +222,12 @@ interface SalixService {
|
||||||
@Body params: Any //description
|
@Body params: Any //description
|
||||||
): Call<Any>
|
): Call<Any>
|
||||||
|
|
||||||
|
@POST("TicketObservations/addDropOff")
|
||||||
|
fun addFropOff(
|
||||||
|
@Query("ticketFk") ticketFk: Long ,
|
||||||
|
@Query("note") note: String ,
|
||||||
|
): Call<Any>
|
||||||
|
|
||||||
@POST("Applications/item_getBalance/execute-proc")
|
@POST("Applications/item_getBalance/execute-proc")
|
||||||
fun itemGetBalance(
|
fun itemGetBalance(
|
||||||
@Query("params") params: Any? = null,
|
@Query("params") params: Any? = null,
|
||||||
|
@ -450,6 +460,7 @@ interface SalixService {
|
||||||
@Query("schema") schema: String = "vn"
|
@Query("schema") schema: String = "vn"
|
||||||
): Call<Any>
|
): Call<Any>
|
||||||
|
|
||||||
|
|
||||||
@POST("Applications/saleTracking_updateIsChecked/execute-proc")
|
@POST("Applications/saleTracking_updateIsChecked/execute-proc")
|
||||||
fun saleTrackingUpdateIsChecked(
|
fun saleTrackingUpdateIsChecked(
|
||||||
@Query("params") params: Any? = null,
|
@Query("params") params: Any? = null,
|
||||||
|
@ -512,6 +523,18 @@ interface SalixService {
|
||||||
@Query("schema") schema: String = "vn"
|
@Query("schema") schema: String = "vn"
|
||||||
): Call<List<CollectionVO>>
|
): Call<List<CollectionVO>>
|
||||||
|
|
||||||
|
@POST("Applications/sectorCollection_getPartial/execute-proc")
|
||||||
|
fun sectorCollectionGetPartial(
|
||||||
|
@Query("params") params: Any? = null,
|
||||||
|
@Query("schema") schema: String = "vn"
|
||||||
|
): Call<List<CollectionVO>>
|
||||||
|
|
||||||
|
@POST("Applications/sectorCollection_hasSalesReserved/execute-func")
|
||||||
|
fun hasSalesReserved(
|
||||||
|
@Query("params") params: Any? = null,
|
||||||
|
@Query("schema") schema: String = "vn"
|
||||||
|
): Call<String>
|
||||||
|
|
||||||
@POST("Applications/worker_getFromHasMistake/execute-proc")
|
@POST("Applications/worker_getFromHasMistake/execute-proc")
|
||||||
fun workerGetFromHasMistake(
|
fun workerGetFromHasMistake(
|
||||||
@Query("params") params: Any,
|
@Query("params") params: Any,
|
||||||
|
@ -656,6 +679,20 @@ interface SalixService {
|
||||||
@Query("params") params: Any,
|
@Query("params") params: Any,
|
||||||
): Call<Unit>
|
): Call<Unit>
|
||||||
|
|
||||||
|
@POST("Applications/item_devalueA2/execute-proc")
|
||||||
|
fun itemDevalueA2(
|
||||||
|
@Query("schema") schema: String = "vn",
|
||||||
|
@Query("params") params: Any,
|
||||||
|
): Call<Unit>
|
||||||
|
|
||||||
|
@POST("Applications/itemShelving_getItemDetails/execute-proc")
|
||||||
|
fun itemShelvingGetItemDetails(
|
||||||
|
@Query("schema") schema: String = "vn",
|
||||||
|
@Query("params") params: Any,
|
||||||
|
):
|
||||||
|
Call<List<ItemDetails>>
|
||||||
|
|
||||||
|
|
||||||
@POST("Applications/expedition_getState/execute-proc")
|
@POST("Applications/expedition_getState/execute-proc")
|
||||||
fun expedition_getState(
|
fun expedition_getState(
|
||||||
@Query("schema") schema: String = "vn",
|
@Query("schema") schema: String = "vn",
|
||||||
|
@ -712,7 +749,7 @@ interface SalixService {
|
||||||
): Call<Any>
|
): Call<Any>
|
||||||
|
|
||||||
@Multipart
|
@Multipart
|
||||||
@POST("Entries/{id}/uploadFile")
|
@POST("EntryDms/{id}/uploadFile")
|
||||||
fun uploadEntryPhoto(
|
fun uploadEntryPhoto(
|
||||||
@Path("id") id: Number,
|
@Path("id") id: Number,
|
||||||
@Query("warehouseId") warehouseId: Number,
|
@Query("warehouseId") warehouseId: Number,
|
||||||
|
@ -834,6 +871,22 @@ interface SalixService {
|
||||||
@Query("filter") filter: String
|
@Query("filter") filter: String
|
||||||
): Call<List<ItemExpeditionTruckVO>>
|
): Call<List<ItemExpeditionTruckVO>>
|
||||||
|
|
||||||
|
@GET("RoadMaps")
|
||||||
|
fun roadmapTruckGet(
|
||||||
|
@Query("filter") filter: String
|
||||||
|
): Call<List<RoadMapTruck>>
|
||||||
|
|
||||||
|
@GET("ExpeditionTrucks")
|
||||||
|
fun getStopMapTruckList(
|
||||||
|
@Query("filter") filter: String
|
||||||
|
): Call<List<StopMapTruck>>
|
||||||
|
|
||||||
|
@POST("Applications/expeditionPallet_List/execute-proc")
|
||||||
|
fun getStopMapTruckPalletList(
|
||||||
|
@Query("params") params: Any? = null,
|
||||||
|
@Query("schema") schema: String = "vn"
|
||||||
|
): Call<List<StopMapTruckPallet>>
|
||||||
|
|
||||||
@POST("PackingSiteAdvanceds")
|
@POST("PackingSiteAdvanceds")
|
||||||
fun ticket_advancePackaging(
|
fun ticket_advancePackaging(
|
||||||
@Body parms: packingSiteSalix
|
@Body parms: packingSiteSalix
|
||||||
|
|
|
@ -72,7 +72,7 @@ class ExpeditionPalletDetailFragment(
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.buttonOk.setOnClickListener {
|
binding.buttonOk.setOnClickListener {
|
||||||
ma.onMyBackPressed()
|
ma.openFragmentTruckFragment()
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -160,7 +160,7 @@ class ExpeditionPalletDetailFragment(
|
||||||
if (it.isError) {
|
if (it.isError) {
|
||||||
ma.messageWithSound(it.errorMessage, true, false)
|
ma.messageWithSound(it.errorMessage, true, false)
|
||||||
} else {
|
} else {
|
||||||
ma.onMyBackPressed()
|
ma.openFragmentTruckFragment()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue