version 1.1

This commit is contained in:
carlos
2024-02-15 00:01:19 -06:00
parent 736d8be03c
commit ea999a41e8
11 changed files with 162 additions and 138 deletions
+7 -3
View File
@@ -405,9 +405,13 @@ namespace compabetov2.database
{
DetalleVentaModel detalleVenta = new DetalleVentaModel(
(int)readerDetalleVenta.GetInt64(2),
new Variante(-1,"",0,0,"",-1)
) ;
new Variante((int)readerDetalleVenta.GetInt64(3),
readerDetalleVenta["nombre"].ToString(),
readerDetalleVenta.GetDecimal(5),
(int)readerDetalleVenta.GetInt64(6),
"",
(int)readerDetalleVenta.GetInt64(8))
);
detallesVenta.Add( detalleVenta );
}