Skip to content

Commit

Permalink
FIX: formatação da TAG vProd na totalização do DF-e
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto Godinho committed Dec 18, 2023
1 parent 98470e1 commit ae9fe28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynfe/processamento/serializacao.py
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@ def _serializar_nota_fiscal(
if nota_fiscal.totais_icms_v_icms_mono_ret:
etree.SubElement(icms_total, "vICMSMonoRet").text = "{:.2f}".format(nota_fiscal.totais_icms_v_icms_mono_ret)

etree.SubElement(icms_total, "vProd").text = str(
etree.SubElement(icms_total, "vProd").text = "{:.2f}".format(
nota_fiscal.totais_icms_total_produtos_e_servicos
)
etree.SubElement(icms_total, "vFrete").text = "{:.2f}".format(
Expand Down

0 comments on commit ae9fe28

Please sign in to comment.