Skip to content

Commit

Permalink
Update highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
giansalex committed Oct 24, 2020
1 parent 687f612 commit 0622bc0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions website/docs/baja.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Los métodos `SOAP` a utilizar son:
Realizaremos la compresión del archivo xml, con nombre: `20123456789-RA-20201018-1.zip`, y
a continuación la incluiremos en la trama SOAP, muy similar al envío de factura.

```xml title="./trama.xml" {11,13,14}
```xml title="./trama.xml" {11-14}
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://service.sunat.gob.pe" xmlns:ns2="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<SOAP-ENV:Header>
<ns2:Security>
Expand Down Expand Up @@ -226,7 +226,7 @@ curl -X POST -H "Content-Type: text/xml" --data-binary @status.xml \

El resultado será el siguiente.

```xml {6}
```xml {6,7}
<?xml version="1.0" encoding="UTF-8"?>
<S:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
Expand Down
6 changes: 4 additions & 2 deletions website/docs/resumen-diario.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ title: Resumen diario de Boletas
sidebar_label: Resumen diario
---

import useBaseUrl from '@docusaurus/useBaseUrl';

Para comunicar la emisión de boletas y notas de crédito/débito relacionadas, SUNAT a definido un esquema XML nombrado como Resumen diario de Boletas `SummaryDocuments`. En este documento se pueden informar varios comprobantes siempre que hayan sido emitidos en el mismo día.

:::note Boleta Invididual
Expand Down Expand Up @@ -288,7 +290,7 @@ Los métodos `SOAP` a utilizar son:
Realizaremos la compresión del archivo xml, con nombre: `20123456789-RC-20201022-33221.zip`, y
a continuación la incluiremos en la trama SOAP, similar al envío de factura.

```xml title="./trama.xml" {11,13,14}
```xml title="./trama.xml" {11-14}
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://service.sunat.gob.pe" xmlns:ns2="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<SOAP-ENV:Header>
<ns2:Security>
Expand Down Expand Up @@ -335,7 +337,7 @@ curl -X POST -H "Content-Type: text/xml" --data-binary @status.xml \

El resultado será el siguiente.

```xml {6}
```xml {6,7}
<?xml version="1.0" encoding="UTF-8"?>
<S:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
Expand Down

0 comments on commit 0622bc0

Please sign in to comment.