Browse Source

Merge pull request #300 from fabioluna/feature/NT2020-0006

[IMP] NT2020-006
master3
Danimar Ribeiro 5 years ago
committed by GitHub
parent
commit
010939f062
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .gitignore
  2. 6
      pytrustnfe/nfe/templates/NfeAutorizacao.xml
  3. 2
      setup.py

2
.gitignore

@ -18,3 +18,5 @@ docs/_build
sent_xml.xml sent_xml.xml
received_xml.xml received_xml.xml
nfse-exemplo.py nfse-exemplo.py
.vim/*
.venv/*

6
pytrustnfe/nfe/templates/NfeAutorizacao.xml

@ -878,6 +878,12 @@
{% endfor %} {% endfor %}
</pag> </pag>
{% endif %} {% endif %}
{% if NFe.infNFe.infIntermed is defined %}
<infIntermed>
<CNPJ>{{ NFe.infNFe.infIntermed.CNPJ }}</CNPJ>
<idCadIntTran>{{ NFe.infNFe.infIntermed.idCadIntTran }}</idCadIntTran>
</infIntermed>
{% endif %}
<infAdic> <infAdic>
<infAdFisco>{{ NFe.infNFe.infAdic.infAdFisco|normalize|escape }}</infAdFisco> <infAdFisco>{{ NFe.infNFe.infAdic.infAdFisco|normalize|escape }}</infAdFisco>
<infCpl>{{ NFe.infNFe.infAdic.infCpl|normalize|escape }}</infCpl> <infCpl>{{ NFe.infNFe.infAdic.infCpl|normalize|escape }}</infCpl>

2
setup.py

@ -2,7 +2,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
VERSION = "1.0.58"
VERSION = "1.0.59"
setup( setup(

Loading…
Cancel
Save