public void clientesAtendidos() { DateTime fecha = DT_fecha.Value; String f = FormatoFecha.getDate(fecha); MySqlConnection con = BDConexicon.conectar(); try { MySqlCommand cmd = new MySqlCommand("select count(venta) as Tventas from ventas where usuario ='" + CB_usuario.SelectedItem.ToString() + "' and f_emision ='" + f + "'", con); MySqlDataReader rd = cmd.ExecuteReader(); int clientes = 0; if (rd.Read()) { clientes = Convert.ToInt32(rd["Tventas"]); } TB_clientes.Text = Convert.ToString(clientes); rd.Close(); } catch (Exception ex) { } con.Close(); }
public double totalVentaDia()//calcula las venta total de cada vendedora por dia { DateTime fecha = DT_fecha.Value; String f = FormatoFecha.getDate(fecha); MySqlConnection con = BDConexicon.conectar(); double total = 0.0; MySqlCommand cmd = new MySqlCommand("select sum(importe) as total from ventas where usuario ='" + CB_usuario.SelectedItem.ToString() + "' and USUFECHA ='" + f + "'", con); MySqlDataReader rd = cmd.ExecuteReader(); while (rd.Read()) { try { total = Convert.ToDouble(rd["total"]); BT_guardar.Enabled = true; } catch (Exception e) { MessageBox.Show("No hay registros para su solicitud, verifique el nombre de la cajera y la fecha"); BT_validar.Enabled = false; BT_calcular.Enabled = false; limpiar(); } } rd.Close(); con.Close(); return(total); }
public void selectDatos(DataGridView grid) { DateTime Finicio = DT_inicio.Value; DateTime Ffin = DT_fin.Value; string inicio = FormatoFecha.getDate(Finicio); string fin = FormatoFecha.getDate(Ffin); MySqlConnection c = BDConexicon.conectar(); MySqlCommand cmd; if (CB_tipo.SelectedItem.ToString() == "Todas") { cmd = new MySqlCommand("select texto as sugerencias from rd_sugerencias where fecha between '" + inicio + "'" + " and '" + fin + "'", c); } else { cmd = new MySqlCommand("select texto as sugerencias from rd_sugerencias where fecha between '" + inicio + "'" + " and '" + fin + "'and tipo= '" + CB_tipo.SelectedItem.ToString() + "'and cargo= '" + CB_cargo.SelectedItem.ToString() + "'", c); } MySqlDataAdapter adaptador = new MySqlDataAdapter(cmd); System.Data.DataTable tb = new System.Data.DataTable(); adaptador.Fill(tb); grid.DataSource = tb; grid.Columns[0].Width = 400; //grid.RowHeadersWidth = 200; }
public double sumaImpuesto() { DateTime fecha = DT_fecha.Value; String f = FormatoFecha.getDate(fecha); MySqlConnection con = BDConexicon.conectar(); double impuesto = 0.0; try { MySqlCommand cmd = new MySqlCommand("select sum(impuesto) as impuesto from ventas where usuario ='" + CB_usuario.SelectedItem.ToString() + "' and f_emision ='" + f + "'", con); MySqlDataReader rd = cmd.ExecuteReader(); while (rd.Read()) { impuesto = Convert.ToDouble(rd["impuesto"]); } rd.Close(); } catch (Exception e) { } con.Close(); return(impuesto); }