Skip to content

Commit

Permalink
updated test requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
satcfdi committed Apr 13, 2024
1 parent 8a0ddb0 commit b43a6e6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions satcfdi/accounting/contabilidad.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def generar_contabilidad(

plz = Polizas(
rfc=rfc_emisor,
mes=str(dp.month).zfill(2),
mes="{:02d}".format(dp.month),
anio=dp.year,
tipo_solicitud=tipo_solicitud,
num_orden=numero_orden,
Expand All @@ -95,7 +95,7 @@ def generar_contabilidad(

cat = Catalogo(
rfc=rfc_emisor,
mes=str(dp.month).zfill(2),
mes="{:02d}".format(dp.month),
anio=dp.year,
ctas=[
Ctas(
Expand All @@ -112,7 +112,7 @@ def generar_contabilidad(

ban = Balanza(
rfc=rfc_emisor,
mes=str(dp.month).zfill(2),
mes="{:02d}".format(dp.month),
anio=dp.year,
tipo_envio=tipo_envio,
fecha_mod_bal=fecha_mod_bal,
Expand All @@ -126,7 +126,7 @@ def generar_contabilidad(
aux_detalles = group_aux_cuentas(polizas)
aux = AuxiliarCtas(
rfc=rfc_emisor,
mes=str(dp.month).zfill(2),
mes="{:02d}".format(dp.month),
anio=dp.year,
tipo_solicitud=tipo_solicitud,
num_orden=numero_orden,
Expand All @@ -145,7 +145,7 @@ def generar_contabilidad(

auxf = RepAuxFol(
rfc=rfc_emisor,
mes=str(dp.month).zfill(2),
mes="{:02d}".format(dp.month),
anio=dp.year,
tipo_solicitud=tipo_solicitud,
num_orden=numero_orden,
Expand Down

0 comments on commit b43a6e6

Please sign in to comment.