version 1.0

This commit is contained in:
carlos
2024-02-03 08:33:04 -06:00
parent 07b36fbb3c
commit 752dffcaea
15 changed files with 121 additions and 116 deletions
+1 -1
View File
@@ -1173,7 +1173,7 @@ namespace compabetov2.database
conexion.Open();
string sql = "SELECT * FROM envio WHERE fecha LIKE @fecha";
string sql = "SELECT * FROM envios WHERE fecha LIKE @fecha and estado = 'CONCLUIDO'";
SQLiteCommand command = new SQLiteCommand(sql, conexion);
command.Parameters.AddWithValue("@fecha", $"%{fecha.Month}/{fecha.Year}%");
reader = command.ExecuteReader();