Skip to content

Commit

Permalink
[FIX] ISSQN do item deve ser adicionado ao XML antes do pis e cofins
Browse files Browse the repository at this point in the history
  • Loading branch information
mileo committed Oct 24, 2014
1 parent c917987 commit e33e822
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pysped/nfe/leiaute/nfe_200.py
Original file line number Diff line number Diff line change
Expand Up @@ -1186,15 +1186,15 @@ def get_xml(self):
xml += self.ICMS.xml
xml += self.IPI.xml
xml += self.II.xml
else:
# ISSQN é esperado antes de PIS e COFINS
xml += self.ISSQN.xml

xml += self.PIS.xml
xml += self.PISST.xml
xml += self.COFINS.xml
xml += self.COFINSST.xml

if self.ISSQN.cSitTrib.valor:
xml += self.ISSQN.xml

xml += '</imposto>'
return xml

Expand Down

1 comment on commit e33e822

@mileo
Copy link
Member Author

@mileo mileo commented on e33e822 Dec 9, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes issue aricaldeira#29

Please sign in to comment.