erp-transportistas-backend-v2/src/modules/carta-porte/controllers/index.ts
Adrian Flores Cortes 825e349f37 [SYNC] feat: Add Carta Porte DTOs and controller
- Add carta-porte controller with CRUD operations
- Add DTOs: create, update, cancelar, timbrar
- Add DTOs: autotransporte, mercancia, ubicacion, figura-transporte
- Add common utilities folder
- Add ordenes-transporte service tests
- Update index exports

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 08:11:29 -06:00

20 lines
538 B
TypeScript

/**
* Carta Porte Controllers
* CFDI con Complemento Carta Porte 3.1
*/
// Main Carta Porte Controller
export * from './carta-porte.controller';
// Mercancia (Cargo/Merchandise) Controller
export * from './mercancia.controller';
// Ubicacion (Locations) Controller
export * from './ubicacion-carta-porte.controller';
// Figura Transporte (Transportation Figures) Controller
export * from './figura-transporte.controller';
// Inspeccion Pre-Viaje (Pre-trip Inspection) Controller
export * from './inspeccion-pre-viaje.controller';