- Add Viaje entity with transport-specific workflow states - Add ParadaViaje entity for multi-stop support - Add Pod entity for Proof of Delivery - Adapt inventory/product.entity with TipoRefaccion for fleet parts - Adapt financial/account.entity with TipoCuentaTransporte and TipoCentroCosto - Update index exports for all modified modules Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
401 B
TypeScript
14 lines
401 B
TypeScript
/**
|
|
* Ordenes de Transporte Entities
|
|
* Schema: transport
|
|
*/
|
|
|
|
// Entities de Transporte
|
|
export * from './orden-transporte.entity';
|
|
|
|
// Entities heredadas de sales (para cotizaciones)
|
|
export { Quotation } from './quotation.entity';
|
|
export { QuotationItem } from './quotation-item.entity';
|
|
export { SalesOrder } from './sales-order.entity';
|
|
export { SalesOrderItem } from './sales-order-item.entity';
|