PUT AlmacenApi/Mover

Mueve un artículo de un hueco a otro

Request Information

URI Parameters

None.

Body Parameters

Datos para realizar el movimiento

MoverArticuloHuecoDto
NameDescriptionTypeAdditional information
IdHuecoOrigen

integer

Required

IdLocalHuecoOrigen

integer

Required

IdHuecoDestino

integer

Required

IdLocalHuecoDestino

integer

Required

IdArticulo

integer

Required

IdLote

integer

None.

IdLocalLote

integer

None.

CantidadAMover

decimal number

Required

Request Formats

application/json, text/json

Sample:
{
  "IdHuecoOrigen": 1,
  "IdLocalHuecoOrigen": 2,
  "IdHuecoDestino": 3,
  "IdLocalHuecoDestino": 4,
  "IdArticulo": 5,
  "IdLote": 6,
  "IdLocalLote": 7,
  "CantidadAMover": 8.0
}

application/x-www-form-urlencoded

Sample:

Sample not available.

application/xml, text/xml

Sample:
<MoverArticuloHuecoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" xmlns="http://schemas.datacontract.org/2004/07/Sofycom.Sofygest.Service.Application.Models.Dtos.Almacen">
  <CantidadAMover>8</CantidadAMover>
  <IdArticulo>5</IdArticulo>
  <IdHuecoDestino>3</IdHuecoDestino>
  <IdHuecoOrigen>1</IdHuecoOrigen>
  <IdLocalHuecoDestino>4</IdLocalHuecoDestino>
  <IdLocalHuecoOrigen>2</IdLocalHuecoOrigen>
  <IdLocalLote>7</IdLocalLote>
  <IdLote>6</IdLote>
</MoverArticuloHuecoDto>

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>