Mostrando las entradas con la etiqueta dte. Mostrar todas las entradas
Mostrando las entradas con la etiqueta dte. Mostrar todas las entradas

miércoles, 15 de julio de 2020

Certificación boleta electrónica 2020

instructivo certificación

set de pruebas

solicitud de revisión set boletas

ejemplo certificación



  1. Boleta de Ventas y Servicios Electrónica
  2. Boleta electrónica de mercado
  3. Inscríbase aquí
  4. Procedimiento de postulación, certificación y autorización
  5. Paso 3 
  6. Realizar Declaración de Cumplimiento

lunes, 16 de abril de 2018

Formato Documentos Tributarios Electrónicos

formato_dte.pdf 2006-07-20 v1.0
formato_dte.pdf 2010-04-08 v1.0
formato_dte.pdf 2012-07-27 v1.0
formato_dte.pdf 2014-09-30 v1.0
formato_dte.pdf 2017-09-20 v2.0
formato_dte.pdf 2018-01-18 v2.1

Descargar

jueves, 12 de abril de 2018

Consulta Avanzada Estado DTE

Documentación: http://www.sii.cl/factura_electronica/OIFE2006_QueryEstDteAv_MDE.pdf

urlws certificación: https://maullin.sii.cl/DTEWS/services/QueryEstDteAv?wsdl
urlws producción: https://palena.sii.cl/DTEWS/services/QueryEstDteAv?wsdl

Ejemplo xml entrada:

<SOAP-ENV:Envelope
xmlns:SOAP-ENV ="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<m:getEstDteAv xmlns:m="http://DefaultNamespace" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<RutEmpresa xsi:type="xsd:string">String</RutEmpresa>
<DvEmpresa xsi:type="xsd:string">String</DvEmpresa>
<RutReceptor xsi:type="xsd:string">String</RutReceptor>
<DvReceptor xsi:type="xsd:string">String</DvReceptor>
<TipoDte xsi:type="xsd:string">String</TipoDte>
<FolioDte xsi:type="xsd:string">String</FolioDte>
<FechaEmisionDte xsi:type="xsd:string">String</FechaEmisionDte>
<MontoDte xsi:type="xsd:string">String</MontoDte>
<FirmaDte xsi:type="xsd:string">String</FirmaDte>
<Token xsi:type="xsd:string">String</Token>
</m:getEstDteAv>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

xml de entrada validado en:
https://www.xmlvalidation.com/
https://www.freeformatter.com/xml-validator-xsd.html

Respuesta ws:

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns1:getEstDteAvResponse
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1="http://DefaultNamespace">
<ns1:getEstDteAvReturn xsi:type="xsd:string">
<?xml version="1.0" encoding="UTF-8"?>
<SII:RESPUESTA xmlns:SII="http://www.sii.cl/XMLSchema">
<SII:RESP_HDR>
<SII:ESTADO>0</SII:ESTADO>
</SII:RESP_HDR>
<SII:RESP_BODY>
<RECIBIDO>SI</RECIBIDO>
<ESTADO>DOK</ESTADO>
<GLOSA>Documento Recibido por el SII. Datos Coinciden con los Registrados</GLOSA>
<TRACKID>1234567890</TRACKID>
<NUMATENCION>999991 [09/04/2013 13:10:44]</NUMATENCION>
</SII:RESP_BODY>
</SII:RESPUESTA>
</ns1:getEstDteAvReturn>
</ns1:getEstDteAvResponse>
</soapenv:Body>
</soapenv:Envelope>


Referencias:
http://www.sii.cl/factura_electronica/doc_emp_aut.htm
http://www.sii.cl/factura_electronica/factura_mercado/instructivo.htm

lunes, 14 de agosto de 2017

Webservice Registro Reclamo DTE

http://www.sii.cl/factura_electronica/Webservice_Registro_Reclamo_DTE_V1.1.pdf
http://www.sii.cl/factura_electronica/GUIA_aceptacion_reclamo_dte.pdf
https://www4.sii.cl/registrorechazodteInternet/

ingresarAceptacionReclamoDoc: Acepta Contenido del Documento (ACD)

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:ingresarAceptacionReclamoDoc>
            <rutEmisor>123</rutEmisor>
            <dvEmisor>4</dvEmisor>
            <tipoDoc>33</tipoDoc>
            <folio>98765</folio>
            <accionDoc>ACD</accionDoc>
        </ws:ingresarAceptacionReclamoDoc>
    </soapenv:Body>
</soapenv:Envelope>

ingresarAceptacionReclamoDoc: Reclamo al Contenido del Documento (RCD)

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:ingresarAceptacionReclamoDoc>
            <rutEmisor>123</rutEmisor>
            <dvEmisor>4</dvEmisor>
            <tipoDoc>33</tipoDoc>
            <folio>98765</folio>
            <accionDoc>RCD</accionDoc>
        </ws:ingresarAceptacionReclamoDoc>
    </soapenv:Body>
</soapenv:Envelope>

ingresarAceptacionReclamoDoc: Otorga Recibo de Mercaderías o Servicios (ERM)

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:ingresarAceptacionReclamoDoc>
            <rutEmisor>123</rutEmisor>
            <dvEmisor>4</dvEmisor>
            <tipoDoc>33</tipoDoc>
            <folio>98765</folio>
            <accionDoc>ERM</accionDoc>
        </ws:ingresarAceptacionReclamoDoc>
    </soapenv:Body>
</soapenv:Envelope>


ingresarAceptacionReclamoDoc: Reclamo por Falta Parcial de Mercaderías (RFP)

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:ingresarAceptacionReclamoDoc>
            <rutEmisor>123</rutEmisor>
            <dvEmisor>4</dvEmisor>
            <tipoDoc>34</tipoDoc>
            <folio>98765</folio>
            <accionDoc>RFP</accionDoc>
        </ws:ingresarAceptacionReclamoDoc>
    </soapenv:Body>
</soapenv:Envelope>

ingresarAceptacionReclamoDoc: Reclamo por Falta Total de Mercaderías (RFT)

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:ingresarAceptacionReclamoDoc>
            <rutEmisor>123</rutEmisor>
            <dvEmisor>4</dvEmisor>
            <tipoDoc>33</tipoDoc>
            <folio>98765</folio>
            <accionDoc>RFT</accionDoc>
        </ws:ingresarAceptacionReclamoDoc>
    </soapenv:Body>
</soapenv:Envelope>


listarEventosHistDoc

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:listarEventosHistDoc>
            <rutEmisor>123</rutEmisor>
            <dvEmisor>K</dvEmisor>
            <tipoDoc>34</tipoDoc>
            <folio>10293847</folio>
        </ws:listarEventosHistDoc>
    </soapenv:Body>
</soapenv:Envelope>


consultarDocDteCedible

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:consultarDocDteCedible>
            <rutEmisor>123</rutEmisor>
            <dvEmisor>8</dvEmisor>
            <tipoDoc>34</tipoDoc>
            <folio>456</folio>
        </ws:consultarDocDteCedible>
    </soapenv:Body>
</soapenv:Envelope>


consultarFechaRecepcionSii

<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ws="http://ws.registroreclamodte.diii.sdi.sii.cl">
    <soapenv:Header/>
    <soapenv:Body>
        <ws:consultarFechaRecepcionSii>
            <rutEmisor>1235</rutEmisor>
            <dvEmisor>7</dvEmisor>
            <tipoDoc>34</tipoDoc>
            <folio>9998</folio>
        </ws:consultarFechaRecepcionSii>
    </soapenv:Body>
</soapenv:Envelope>
Primero se hace el Recibo de mercaderías y después Acepta el contenido del documento