Skip to content

Commit 36e1932

Browse files
committed
Updated
1 parent 38c611d commit 36e1932

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • satdigitalinvoice/formatting_functions

satdigitalinvoice/formatting_functions/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def pesos(amount):
99
decimal_part = "{:.2f}".format(amount).split(".")[1]
1010
integer_part = num2words(int(amount), lang=LANG, to='currency').upper()
1111

12-
return "${0:,.2f} (SON: {1} {2}/100 MONEDA NACIONAL)".format(amount, integer_part, decimal_part)
12+
return "${0:,.2f} (SON: {1} {2}/100 M.N.)".format(amount, integer_part, decimal_part)
1313

1414

1515
# def pesos_sinletra(amount):

0 commit comments

Comments
 (0)