Finalización de Reportes y arreglos varios de controles y comportamientos...

This commit is contained in:
2025-06-03 13:45:20 -03:00
parent 99532b03f1
commit 062cc05fd0
67 changed files with 4523 additions and 993 deletions

View File

@@ -0,0 +1,9 @@
public class LiquidacionCanillaDetalleDto
{
public string Publicacion { get; set; } = string.Empty;
public string Canilla { get; set; } = string.Empty; // Para el nombre del canilla en el reporte
public int TotalCantSalida { get; set; }
public int TotalCantEntrada { get; set; }
public decimal TotalRendir { get; set; }
public decimal PrecioEjemplar { get; set; }
}

View File

@@ -0,0 +1,5 @@
public class LiquidacionCanillaGananciaDto
{
public string Publicacion { get; set; } = string.Empty;
public decimal TotalRendir { get; set; } // Asumo que este es el 'monto de comisión'
}