2025-05-28 16:01:59 -03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace GestionIntegral.Api.Dtos.Reportes
|
|
|
|
|
{
|
|
|
|
|
public class ReporteCuentasDistribuidorResponseDto
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<BalanceCuentaDistDto> EntradasSalidas { get; set; } = new List<BalanceCuentaDistDto>();
|
|
|
|
|
public IEnumerable<BalanceCuentaDebCredDto> DebitosCreditos { get; set; } = new List<BalanceCuentaDebCredDto>();
|
|
|
|
|
public IEnumerable<BalanceCuentaPagosDto> Pagos { get; set; } = new List<BalanceCuentaPagosDto>();
|
2026-05-07 12:03:26 -03:00
|
|
|
public string? NombreDistribuidor { get; set; }
|
|
|
|
|
public string? NombreEmpresa { get; set; }
|
|
|
|
|
|
|
|
|
|
// Saldo a la fecha desde elegida en el filtro:
|
|
|
|
|
// - Si existe cierre con FechaCorte < FechaDesde: SaldoCierre + movimientos netos entre fechaCierre+1 y fechaDesde-1.
|
|
|
|
|
// - Sin cierres previos: 0.
|
|
|
|
|
public decimal SaldoInicial { get; set; }
|
2025-05-28 16:01:59 -03:00
|
|
|
}
|
|
|
|
|
}
|