Merge: Resolver conflictos en client-selector-dialog.svelte

This commit is contained in:
2026-02-09 11:39:21 -06:00
195 changed files with 7001 additions and 530 deletions

View File

@@ -54,6 +54,9 @@ from .reports.importacion.consolidados.routes import router as consolidated_repo
from .reports.importacion.packing_list.routes import router as packing_list_router
from .reports.exportacion.aviso_consolidado.routes import router as aviso_consolidado_export_router
from .reports.exportacion.descargo.routes import router as discharge_reports_router
from .manifests.manifest.routes import router as manifests_router
from .manifests.driver.routes import router as manifest_drivers_router
from .manifests.manifiesto_anexo.routes import router as manifest_anexos_router
@@ -152,4 +155,22 @@ router.include_router(
discharge_reports_router,
prefix="/a76/reports/exportacion/descargo",
tags=["a76 / reports"]
)
router.include_router(
manifests_router,
prefix="/a76",
tags=["a76 / manifests"]
)
router.include_router(
manifest_drivers_router,
prefix="/a76",
tags=["a76 / manifests"]
)
router.include_router(
manifest_anexos_router,
prefix="/a76",
tags=["a76 / manifests"]
)