You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
971 B
24 lines
971 B
<envEvento xmlns="http://www.portalfiscal.inf.br/nfe" versao="1.00">
|
|
<idLote>{{ idLote }}</idLote>
|
|
{% for evento in eventos %}
|
|
<evento xmlns="http://www.portalfiscal.inf.br/nfe" versao="1.00">
|
|
<infEvento Id="{{ evento.Id }}">
|
|
<cOrgao>{{ evento.cOrgao }}</cOrgao>
|
|
<tpAmb>{{ evento.tpAmb }}</tpAmb>
|
|
<CNPJ>{{ evento.CNPJ }}</CNPJ>
|
|
<chNFe>{{ evento.chNFe }}</chNFe>
|
|
<dhEvento>{{ evento.dhEvento }}</dhEvento>
|
|
<tpEvento>{{ evento.tpEvento }}</tpEvento>
|
|
<nSeqEvento>{{ evento.nSeqEvento }}</nSeqEvento>
|
|
<verEvento>1.00</verEvento>
|
|
<detEvento versao="1.00">
|
|
<descEvento>{{ evento.descEvento }}</descEvento>
|
|
<nProt>{{ evento.nProt }}</nProt>
|
|
<xJust>{{ evento.xJust|normalize|escape }}</xJust>
|
|
<xCorrecao>{{ evento.xCorrecao|normalize|escape }}</xCorrecao>
|
|
<xCondUso>{{ evento.xCondUso }}</xCondUso>
|
|
</detEvento>
|
|
</infEvento>
|
|
</evento>
|
|
{% endfor %}
|
|
</envEvento>
|