private void txtidprod_KeyPress(object sender, KeyPressEventArgs e) { Clsutil.Solonumeros(e); if (e.KeyChar == (char)13) { if (txtidprod.Text != "") { sql = "select * from DBProductos where IDProductoDBProductos = '" + txtidprod.Text + "'"; util.Select(sql); if (Convert.ToDouble(util.reader.Read()) > 0) { if (Convert.ToInt64(util.reader["stock"].ToString()) > 0) { double numero = Convert.ToDouble(util.reader["IDProductoDBProductos"].ToString()); descontarpro(Convert.ToInt64(numero)); foreach (DataGridViewRow item in bunifuCustomDataGrid1.Rows) { if (numero == Convert.ToDouble(item.Cells["lblid"].Value)) { item.Cells["lblCantidad"].Value = Convert.ToInt32(item.Cells["lblCantidad"].Value) + 1; item.Cells["lblTotal"].Value = Convert.ToDouble(item.Cells["lblCantidad"].Value) * Convert.ToDouble(util.reader["PrecioDBProductos"].ToString()); util.con.Close(); sumasprod(); txtidprod.Text = ""; return; } } bunifuCustomDataGrid1.Rows.Add(util.reader["IDProductoDBProductos"].ToString(), util.reader["NombreDBProductos"].ToString(), "1", util.reader["PrecioDBProductos"].ToString(), util.reader["PrecioDBProductos"].ToString()); sumasprod(); txtidprod.Text = ""; } else { MessageBox.Show("Articulo no disponible :')"); } } else { MessageBox.Show("Articulo no disponible :')"); txtidprod.Text = ""; } util.con.Close(); } } }
private void txtidmembresias_KeyPress(object sender, KeyPressEventArgs e) { Clsutil.Solonumeros(e); try { if ((int)e.KeyChar == (int)Keys.Enter) { if (txtidmembresias.Text != "") { consultas.con.Close(); sql = "select NombreDBClientes as Nombre ,fechainicial as Inicial, fechaexpe as Final from DBVMembre inner join DBClientes on DBVMembre.ClienteDBVenta = DBClientes.IDDBClientes where ClienteDBVenta = '" + txtidmembresias.Text + "'"; consultas.Select(sql); if (consultas.reader.Read()) { if (Convert.ToDateTime(consultas.reader["Final"].ToString()) > Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd"))) { lblnombre.Text = consultas.reader["Nombre"].ToString(); DateTime fehcfinal = Convert.ToDateTime(consultas.reader["Final"].ToString()); lblfechafinal.Text = fehcfinal.ToString("yyyy-MM-dd"); consultas.con.Close(); realizarbusuqeda(); txtidmembresias.Text = ""; parar(); iniciar(); } else { bunifuPictureBox2.Visible = true; txtidmembresias.Text = ""; parar(); iniciar(); } } else { txtidmembresias.Text = ""; } } } } catch (Exception) { txtidmembresias.Text = ""; } }
private void txtdias_KeyPress(object sender, KeyPressEventArgs e) { Clsutil.Solonumeros(e); }
private void txtelefonconta_KeyPress(object sender, KeyPressEventArgs e) { Clsutil.Solonumeros(e); }
private void txtteleonocone_KeyPress(object sender, KeyPressEventArgs e) { Clsutil.Solonumeros(e); }