Primera versión estable compatible con linux de WSAsegasa

This commit is contained in:
2025-11-20 16:34:14 +01:00
parent 68ab86be9e
commit 574a139e78
209 changed files with 19093 additions and 16 deletions

View File

@@ -0,0 +1,110 @@
using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class vf_recibos_estadisticas
{
public int idRecibo { get; set; }
public string? CodigoRecibo { get; set; }
public DateOnly FechaEfecto { get; set; }
public DateOnly FechaVencimiento { get; set; }
public DateOnly? FechaPago { get; set; }
public DateOnly? FechaDevolucionBanco { get; set; }
public DateOnly? FechaBaja { get; set; }
public DateOnly? FechaFacturacion { get; set; }
public double? TotalRecibo { get; set; }
public double? ComisionReciboPrimaNeta { get; set; }
public double? TotalComision { get; set; }
public double? ComisionAgente { get; set; }
public double? ComisionAsegasaPrimaNeta { get; set; }
public double? ComisionPrevista { get; set; }
public double? AsegasaComisionTotal { get; set; }
public double? TotalReciboAnulado { get; set; }
public double? ComisionReciboPrimaNetaAnulado { get; set; }
public double? TotalComisionAnulado { get; set; }
public double? ComisionAgenteAnulado { get; set; }
public double? ComisionAsegasaPrimaNetaAnulado { get; set; }
public double? ComisionPrevistaAnulado { get; set; }
public double? AsegasaComisionTotalAnulado { get; set; }
public int EsRecibo { get; set; }
public int EsAnulacion { get; set; }
public string? Compania { get; set; }
public string? CodigoCia { get; set; }
/// <summary>
/// tabla ramos
/// </summary>
public int? idRamo { get; set; }
public string? Ramo { get; set; }
public string? FamiliaRamo { get; set; }
public string? Tomador { get; set; }
public string? CIFTomador { get; set; }
public string? Telefono1Tomador { get; set; }
public string? Telefono2Tomador { get; set; }
public string? EmailTomador { get; set; }
public string? CausaBaja { get; set; }
public bool? CausaBajaOculta { get; set; }
public string? TipoRecibo { get; set; }
public string? TipoProduccion { get; set; }
public string? NumeroPoliza { get; set; }
public string? CiaNumeroPoliza { get; set; }
public int? NumeroSuplemento { get; set; }
public string? CodigoAgente { get; set; }
public int? idAgente { get; set; }
public string? Agente { get; set; }
public string? SubAgenteSuperior { get; set; }
public string Oficina { get; set; } = null!;
public string? SubAgente { get; set; }
public string? CodigoSubAgente { get; set; }
public string? CodigoCausaDevolucion { get; set; }
}