feature/catalogo-pedimento

This commit is contained in:
2026-03-17 16:35:27 -06:00
parent e326ac0f0a
commit 3983c9e4b3
16 changed files with 355 additions and 70 deletions

View File

@@ -15,6 +15,7 @@ from .incoterms.routes import router as incoterms_router
from .invoice_types.routes import router as invoice_types_router
from .material_types.routes import router as material_types_router
from .payment_methods.routes import router as payment_methods_router
from .pedimento_transport_catalog.routes import router as pedimento_transport_catalog_router
from .pedimento_codes.routes import router as pedimento_codes_router
from .pedimento_regimens.routes import router as pedimento_regimens_router
from .sectors.routes import router as sectors_router
@@ -28,6 +29,11 @@ from .valuation_methods.routes import router as valuation_methods_router
router = APIRouter()
# Registrar módulos
router.include_router(
pedimento_transport_catalog_router,
prefix="/reference_data",
tags=["public / reference_data / pedimento_transport_catalog"],
)
router.include_router(
pedimento_codes_router,
prefix="/reference_data",