From 55fa7c10b51dd985d05f2850736a030c79cfc957 Mon Sep 17 00:00:00 2001 From: acazares Date: Mon, 9 Feb 2026 11:40:25 -0600 Subject: [PATCH] Fix import paths for schemas in service.py files --- .../reports/importacion/consolidados/temporary/mex/service.py | 2 +- .../a76/reports/importacion/facturas/temporary/mex/service.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/api/v1/modules/a76/reports/importacion/consolidados/temporary/mex/service.py b/backend/api/v1/modules/a76/reports/importacion/consolidados/temporary/mex/service.py index 5cff09b4..c2274822 100644 --- a/backend/api/v1/modules/a76/reports/importacion/consolidados/temporary/mex/service.py +++ b/backend/api/v1/modules/a76/reports/importacion/consolidados/temporary/mex/service.py @@ -33,7 +33,7 @@ from api.v1.modules.a76.transportation.drivers.models import Driver from api.v1.modules.a76.general_catalogs.tariff_fractions.models import TariffFraction # --- SCHEMAS --- -from .schemas import ( +from ...mex.schemas import ( ClienteSchema, PartidaSchema, TotalesSchema, FacturaSchema, FacturaImportacionCompleta ) diff --git a/backend/api/v1/modules/a76/reports/importacion/facturas/temporary/mex/service.py b/backend/api/v1/modules/a76/reports/importacion/facturas/temporary/mex/service.py index 200a3942..4b296f99 100644 --- a/backend/api/v1/modules/a76/reports/importacion/facturas/temporary/mex/service.py +++ b/backend/api/v1/modules/a76/reports/importacion/facturas/temporary/mex/service.py @@ -33,7 +33,7 @@ from api.v1.modules.a76.transportation.drivers.models import Driver from api.v1.modules.a76.general_catalogs.tariff_fractions.models import TariffFraction # --- SCHEMAS --- -from .schemas import ( +from ...mex.schemas import ( ClienteSchema, PartidaSchema, TotalesSchema, FacturaSchema, FacturaImportacionCompleta )