Service


Haga clic aquí para obtener una lista completa de operaciones.

DetalleInventario

Prueba

El formulario de prueba sólo está disponible para solicitudes del equipo local.

SOAP 1.1

A continuación se muestra un ejemplo de solicitud y respuesta para SOAP 1.1. Es necesario reemplazar los marcadores de posición que aparecen con valores reales.

POST /Service.asmx HTTP/1.1
Host: movilapiqas.cassinelli.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://app.cassinelli.com/DetalleInventario"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DetalleInventario xmlns="http://app.cassinelli.com/">
      <sCO_EMPR>string</sCO_EMPR>
      <sCO_INVE>string</sCO_INVE>
      <sCO_RUBR>string</sCO_RUBR>
      <sCO_ITEM>string</sCO_ITEM>
      <sNU_CORR>string</sNU_CORR>
      <sCO_MPAC>string</sCO_MPAC>
      <sDE_ITEM_LARG>string</sDE_ITEM_LARG>
      <sCO_UNME>string</sCO_UNME>
      <nCA_STOC_DISP>double</nCA_STOC_DISP>
      <nCA_STOC_FALL>double</nCA_STOC_FALL>
      <nCA_STOC_LIQU>double</nCA_STOC_LIQU>
      <nCA_STOC_DPRO>double</nCA_STOC_DPRO>
      <nCA_STOC_TIMP>double</nCA_STOC_TIMP>
      <nCA_STOC_TRAN>double</nCA_STOC_TRAN>
      <nCA_STOC_SUMI>double</nCA_STOC_SUMI>
      <nCA_STOC_PEND>double</nCA_STOC_PEND>
      <nCA_STOC_CAJA>double</nCA_STOC_CAJA>
      <nCA_STOC_NEGA>double</nCA_STOC_NEGA>
      <nCA_PEND_NEGA>double</nCA_PEND_NEGA>
      <nCA_STOC_INVE>double</nCA_STOC_INVE>
      <sDE_OBSE_ITEM>string</sDE_OBSE_ITEM>
      <nCA_TOMA_CAJA>double</nCA_TOMA_CAJA>
      <sSU_CANT_TOMA>string</sSU_CANT_TOMA>
      <nCA_SSTO_TIEN>double</nCA_SSTO_TIEN>
      <nCA_SSTO_PROY>double</nCA_SSTO_PROY>
      <nCA_SSTO_SUBD>double</nCA_SSTO_SUBD>
    </DetalleInventario>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <DetalleInventarioResponse xmlns="http://app.cassinelli.com/">
      <DetalleInventarioResult>string</DetalleInventarioResult>
    </DetalleInventarioResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

A continuación se muestra un ejemplo de solicitud y respuesta para SOAP 1.2. Es necesario reemplazar los marcadores de posición que aparecen con valores reales.

POST /Service.asmx HTTP/1.1
Host: movilapiqas.cassinelli.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <DetalleInventario xmlns="http://app.cassinelli.com/">
      <sCO_EMPR>string</sCO_EMPR>
      <sCO_INVE>string</sCO_INVE>
      <sCO_RUBR>string</sCO_RUBR>
      <sCO_ITEM>string</sCO_ITEM>
      <sNU_CORR>string</sNU_CORR>
      <sCO_MPAC>string</sCO_MPAC>
      <sDE_ITEM_LARG>string</sDE_ITEM_LARG>
      <sCO_UNME>string</sCO_UNME>
      <nCA_STOC_DISP>double</nCA_STOC_DISP>
      <nCA_STOC_FALL>double</nCA_STOC_FALL>
      <nCA_STOC_LIQU>double</nCA_STOC_LIQU>
      <nCA_STOC_DPRO>double</nCA_STOC_DPRO>
      <nCA_STOC_TIMP>double</nCA_STOC_TIMP>
      <nCA_STOC_TRAN>double</nCA_STOC_TRAN>
      <nCA_STOC_SUMI>double</nCA_STOC_SUMI>
      <nCA_STOC_PEND>double</nCA_STOC_PEND>
      <nCA_STOC_CAJA>double</nCA_STOC_CAJA>
      <nCA_STOC_NEGA>double</nCA_STOC_NEGA>
      <nCA_PEND_NEGA>double</nCA_PEND_NEGA>
      <nCA_STOC_INVE>double</nCA_STOC_INVE>
      <sDE_OBSE_ITEM>string</sDE_OBSE_ITEM>
      <nCA_TOMA_CAJA>double</nCA_TOMA_CAJA>
      <sSU_CANT_TOMA>string</sSU_CANT_TOMA>
      <nCA_SSTO_TIEN>double</nCA_SSTO_TIEN>
      <nCA_SSTO_PROY>double</nCA_SSTO_PROY>
      <nCA_SSTO_SUBD>double</nCA_SSTO_SUBD>
    </DetalleInventario>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <DetalleInventarioResponse xmlns="http://app.cassinelli.com/">
      <DetalleInventarioResult>string</DetalleInventarioResult>
    </DetalleInventarioResponse>
  </soap12:Body>
</soap12:Envelope>