26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | namespace GestionIntegral.Api.Dtos.Distribucion | ||
|  | { | ||
|  |     public class EntradaSalidaCanillaDto | ||
|  |     { | ||
|  |         public int IdParte { get; set; } | ||
|  |         public int IdPublicacion { get; set; } | ||
|  |         public string NombrePublicacion { get; set; } = string.Empty; | ||
|  |         public int IdCanilla { get; set; } | ||
|  |         public string NomApeCanilla { get; set; } = string.Empty; | ||
|  |         public bool CanillaEsAccionista { get; set; } | ||
|  |         public string Fecha { get; set; } = string.Empty; // yyyy-MM-dd | ||
|  |         public int CantSalida { get; set; } | ||
|  |         public int CantEntrada { get; set; } | ||
|  |         public int Vendidos { get; set; } // Calculado | ||
|  |         public string? Observacion { get; set; } | ||
|  |         public bool Liquidado { get; set; } | ||
|  |         public string? FechaLiquidado { get; set; } // yyyy-MM-dd | ||
|  |         public int? UserLiq { get; set; } | ||
|  |         public string? NombreUserLiq { get; set; } // Para mostrar en UI | ||
|  |         public decimal MontoARendir { get; set; } // Calculado por el backend | ||
|  |         public decimal PrecioUnitarioAplicado { get; set; } // Info para UI | ||
|  |         public decimal RecargoAplicado { get; set; } // Info para UI | ||
|  |         public decimal PorcentajeOMontoCanillaAplicado { get; set; } // Info para UI | ||
|  |         public bool EsPorcentajeCanilla { get; set; } // Info para UI | ||
|  |     } | ||
|  | } |