Add months in global invoice

This commit is contained in:
el Mau 2023-01-02 14:56:34 -06:00
parent 5418b23200
commit 210f50a7d7
1 changed files with 11 additions and 0 deletions

View File

@ -365,6 +365,17 @@ class CfdiToDict(object):
'05': '[05] Bimestral',
}
MESES = {
'01': '[01] Enero',
'02': '[02] Febrero',
'03': '[03] Marzo',
'04': '[04] Abril',
'05': '[05] Mayo',
'06': '[06] Junio',
'07': '[07] Julio',
'08': '[08] Agosto',
'09': '[09] Septiembre',
'10': '[10] Octubre',
'11': '[11] Noviembre',
'12': '[12] Diciembre',
}