Browse Source

* [ADD] vICMSSubstituto tag in nfe xml

pull/236/head
marinaGD 6 years ago
committed by Danimar Ribeiro
parent
commit
7b7e72cce4
  1. 1
      pytrustnfe/nfe/templates/NfeAutorizacao.xml
  2. 7
      requirements.txt
  3. 4
      setup.py

1
pytrustnfe/nfe/templates/NfeAutorizacao.xml

@ -500,6 +500,7 @@
<CSOSN>{{ imposto.ICMS.CST }}</CSOSN>
<vBCSTRet>{{ imposto.ICMS.vBCSTRet }}</vBCSTRet>
<pST>{{ imposto.ICMS.pST }}</pST>
<vICMSSubstituto>{{imposto.ICMS.vICMSSubstituto}}</vICMSSubstituto>
<vICMSSTRet>{{ imposto.ICMS.vICMSSTRet }}</vICMSSTRet>
<vBCFCPSTRet>{{ imposto.ICMS.vBCFCPSTRet }}</vBCFCPSTRet>
<pFCPSTRet>{{ imposto.ICMS.pFCPSTRet }}</pFCPSTRet>

7
requirements.txt

@ -1,4 +1,4 @@
lxml >= 3.5.0, < 4
lxml
nose
mock
coveralls
@ -10,8 +10,9 @@ suds >= 0.4
suds_requests >= 0.3
defusedxml >= 0.4.1, < 0.6
eight >= 0.3.0, < 0.5
cryptography >= 1.8, < 1.10
pyOpenSSL >= 16.0.0, < 17
cryptography >= 1.8, < 3
pyOpenSSL < 19, >= 17.5.0
certifi >= 2015.11.20.1
reportlab
pytz
zeep

4
setup.py

@ -1,7 +1,7 @@
# coding=utf-8
from setuptools import setup, find_packages
VERSION = "1.0.1"
VERSION = "1.0.2"
setup(
@ -38,10 +38,10 @@ later (LGPLv2+)',
install_requires=[
'Jinja2 >= 2.8',
'signxml >= 2.4.0',
'lxml >= 3.5.0, < 4',
'suds >= 0.4',
'suds_requests >= 0.3',
'reportlab',
'lxml',
'pytz',
'zeep'
],

Loading…
Cancel
Save