From 8722139b71758259040db6dac8d3643740096c46 Mon Sep 17 00:00:00 2001 From: Kevin Rosales Date: Sat, 8 Nov 2025 08:35:38 -0600 Subject: [PATCH] =?UTF-8?q?Resumen=20del=20trabajo=20de=20hoy:=20Se=20agre?= =?UTF-8?q?garon=20y=20actualizaron=20m=C3=B3dulos,=20rutas,=20servicios?= =?UTF-8?q?=20y=20DTOs=20para=20las=20entidades=20trabajadas=20hoy,=20incl?= =?UTF-8?q?uyendo=20Aduanal,=20Drivers,=20Trailers,=20TransportModes,=20Tr?= =?UTF-8?q?ansportTypes,=20Transporters,=20Vehicles,=20entre=20otros.=20Se?= =?UTF-8?q?=20verific=C3=B3=20la=20presencia=20de=20los=20campos=20tenant?= =?UTF-8?q?=5Fid=20y=20company=5Fid=20en=20los=20modelos=20relevantes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/api/v1/modules/a76/router.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/backend/api/v1/modules/a76/router.py b/backend/api/v1/modules/a76/router.py index ec8a2083..25305015 100644 --- a/backend/api/v1/modules/a76/router.py +++ b/backend/api/v1/modules/a76/router.py @@ -24,7 +24,10 @@ from .transport_types.routes import router as transport_types_router from .trailers.routes import router as trailers_router from .trailer_types.routes import router as trailer_types_router from .transport_modes.routes import router as transport_modes_router -from .aduanal.routes import router as aduanal_router +from .aduanal.routes import router as customs_broker_router +from .drivers.routes import router as drivers_router +from .transporters.routes import router as transporters_router +from .vehicles.routes import router as vehicles_router # Router principal router = APIRouter() @@ -49,5 +52,8 @@ router.include_router(transport_types_router, prefix="/a76", tags=["a76 / Transp router.include_router(trailers_router, prefix="/a76", tags=["a76 / Trailers"]) router.include_router(trailer_types_router, prefix="/a76", tags=["a76 / TrailerTypes"]) router.include_router(transport_modes_router, prefix="/a76", tags=["a76 / TransportModes"]) -router.include_router(aduanal_router, prefix="/a76", tags=["a76 / Aduanal"]) +router.include_router(customs_broker_router, prefix="/a76", tags=["a76 / CustomsBroker"]) +router.include_router(drivers_router, prefix="/a76", tags=["a76 / Drivers"]) +router.include_router(transporters_router, prefix="/a76", tags=["a76 / Transporters"]) +router.include_router(vehicles_router, prefix="/a76", tags=["a76 / Vehicles"])