QuestPdf Implementado en la totalidad de reportes.
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 7m55s

This commit is contained in:
2025-06-24 12:52:37 -03:00
parent a5bcbefa52
commit 229eb937f5
51 changed files with 4009 additions and 954 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
namespace GestionIntegral.Api.Dtos.Reportes.ViewModels
{
public class ComparativaConsumoBobinasViewModel
{
public IEnumerable<ComparativaConsumoBobinasDto> Detalles { get; set; } = new List<ComparativaConsumoBobinasDto>();
public string? NombrePlanta { get; set; }
public string MesA { get; set; } = string.Empty;
public string MesB { get; set; } = string.Empty;
public string FechaReporte { get; set; } = DateTime.Now.ToString("dd/MM/yyyy");
public bool EsConsolidado => string.IsNullOrEmpty(NombrePlanta);
}
}