michangarrito/apps/backend/dist/modules/inventory/dto/inventory.dto.d.ts
rckrdmrd 97f407c661 [MIGRATION-V2] feat: Migrar michangarrito a estructura v2
- Prefijo v2: MCH
- TRACEABILITY-MASTER.yml creado
- Listo para integracion como submodulo

Workspace: v2.0.0 | SIMCO: v4.0.0
2026-01-10 11:28:54 -06:00

20 lines
485 B
TypeScript

import { MovementType } from '../entities/inventory-movement.entity';
export declare class CreateMovementDto {
productId: string;
movementType: MovementType;
quantity: number;
unitCost?: number;
referenceType?: string;
referenceId?: string;
notes?: string;
}
export declare class AdjustStockDto {
productId: string;
newQuantity: number;
reason?: string;
}
export declare class StockQueryDto {
lowStock?: boolean;
outOfStock?: boolean;
}