- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
20 lines
485 B
TypeScript
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;
|
|
}
|