Continuación de CRUDs e inicio de Reportes.

This commit is contained in:
2025-05-27 11:21:00 -03:00
parent 3c1fe15b1f
commit 298bc0d094
61 changed files with 41554 additions and 33 deletions

View File

@@ -0,0 +1,8 @@
export interface ExistenciaPapelDto {
tipoBobina: string;
bobinasEnStock: number | null;
totalKilosEnStock: number | null;
consumoAcumulado: number | null;
promedioDiasDisponibles: number | null;
fechaEstimacionFinStock?: string | null;
}