Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formatando com separador de milhar os numeros #326

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pytrustnfe/nfe/danfe.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from io import BytesIO
from textwrap import wrap
import math
from decimal import Decimal

from reportlab.lib import utils
from reportlab.pdfgen import canvas
Expand Down Expand Up @@ -84,7 +85,8 @@ def getdateByTimezone(cDateUTC, timezone=None):

def format_number(cNumber):
if cNumber:
return cNumber.replace(",", "X").replace("X", ".").replace(".", ",")
cNumber = "{0:,}".format(Decimal(cNumber))
return cNumber.replace(",", "X").replace(".", ",").replace("X", ".")
return ""


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


VERSION = "2.0.0"
VERSION = "2.0.1"


setup(
Expand Down