2026-01-30 v5

This commit is contained in:
2026-01-30 13:44:23 +01:00
parent 50d248a73f
commit 2a67fffa00
4 changed files with 121 additions and 22 deletions

View File

@@ -8,7 +8,9 @@ namespace bdGrupoSanchoToro.db
{
public partial class apuntes
{
[NotMapped]
private string _NumeroCuentaTmp;
[NotMapped]
public string NumeroCuentaTmp
{
get
@@ -21,7 +23,9 @@ namespace bdGrupoSanchoToro.db
OnPropertyChanged("NumeroCuentaTmp");
}
}
[NotMapped]
public double SaldoCuentaTmp { get; set; }
[NotMapped]
public string DescripcionCuentaTmp { get; set; }
public static void EstableceSaldoTmp(List<apuntes> lap)
{
@@ -65,7 +69,9 @@ namespace bdGrupoSanchoToro.db
throw new Exception(ex.Message, ex);
}
}
[NotMapped]
private bool? _Conciliado;
[NotMapped]
public bool Conciliado
{
get
@@ -103,6 +109,7 @@ namespace bdGrupoSanchoToro.db
}
[NotMapped]
public conciliacionesbancarias ConciliacionActual_TMP { get; set; }
[NotMapped]
public double Saldo
{
get
@@ -110,6 +117,7 @@ namespace bdGrupoSanchoToro.db
return Math.Round(Debe - Haber, 2);
}
}
[NotMapped]
public double Diferencia
{
get