- 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>
20 lines
538 B
TypeScript
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';
|