feat: refs#7207 errorTicketAdvance
This commit is contained in:
parent
c72c76bdb3
commit
31c715c40d
|
@ -210,6 +210,11 @@ interface SalixService {
|
|||
|
||||
): Call<Any>
|
||||
|
||||
@GET("Sips/findOne")
|
||||
fun sipGetExtension(
|
||||
@Query("filter") filter: String,
|
||||
): Call<Any>
|
||||
|
||||
@GET("Workers/Summary")
|
||||
fun getNameWorker(
|
||||
@Query("filter") filter: String
|
||||
|
@ -892,6 +897,11 @@ interface SalixService {
|
|||
@Body parms: PackingSiteSalix
|
||||
): Call<Unit>
|
||||
|
||||
@GET("Tickets/{id}/exists")
|
||||
fun ticketExists(
|
||||
@Path("id") id: Number,
|
||||
): Call<JsonObject>
|
||||
|
||||
@PUT("ItemBarCodes")
|
||||
fun barcodesEdit(
|
||||
@Body params: ItemBarCodeSalix
|
||||
|
|
Loading…
Reference in New Issue