Skip to content

Commit 38c611d

Browse files
committed
Updated
1 parent 3153637 commit 38c611d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • satdigitalinvoice/formatting_functions

satdigitalinvoice/formatting_functions/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ def get_month_name(month_number):
4545

4646
def delta_tiempo(duracion):
4747
months = duracion.years * 12 + duracion.months
48-
if months == 12:
49-
return 'UN AÑO'
50-
return num_letras(duracion.months) + ' MESES'
48+
# if months == 12:
49+
# return '1 (UN) AÑO'
50+
return numero(months) + ' MESES'

0 commit comments

Comments
 (0)