Continuidad de reportes Frontend. Se sigue..

This commit is contained in:
2025-05-28 18:58:45 -03:00
parent 2273ebb1e0
commit 70fc847721
23 changed files with 1645 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
export interface MovimientoBobinaEstadoDetalleDto {
tipoBobina: string;
numeroRemito: string;
fechaMovimiento: string; // o Date, pero string es más simple para la tabla si ya viene formateado
cantidad: number;
tipoMovimiento: string; // "Ingreso", "Utilizada", "Dañada"
}