public void buscarProducto() { modProducto modProducto = new modProducto(); modSesion modSesion = new modSesion(); string condicion = ""; if (IsNumeric(txtCodigoProducto.Text) == true) { condicion = " where id = " + txtCodigoProducto.Text + " or CodigoDeBarra = '" + txtCodigoProducto.Text + "'"; } else { condicion = " where CodigoDeBarra = '" + txtCodigoProducto.Text + "'"; } productoAVender = new DataSet(); productoAVender = modProducto.cargarProducto(condicion); if (productoAVender.Tables["rsProducto"].Rows.Count == 0) { MessageBox.Show("Producto No existente"); txtFactura.Focus(); } else { lblCodigo.Text = Convert.ToString(productoAVender.Tables["rsProducto"].Rows[0]["id"]); lblDescricion.Text = Convert.ToString(productoAVender.Tables["rsProducto"].Rows[0]["Descripcion"]); txtPrecio.Text = Convert.ToString(modSesion.mascaraPrecio(productoAVender.Tables["rsProducto"].Rows[0]["PrecioUnitario"])); txtPrecioMay.Text = Convert.ToString(modSesion.mascaraPrecio(productoAVender.Tables["rsProducto"].Rows[0]["PrecioMayorista"])); txtPrecioUnit.Text = Convert.ToString(modSesion.mascaraPrecio(productoAVender.Tables["rsProducto"].Rows[0]["PrecioUnitario"])); txtStock.Text = Convert.ToString(modSesion.mascaraCantidad(productoAVender.Tables["rsProducto"].Rows[0]["Stock"])); txtCantidad.Focus(); } }
public void buscar() { modProducto modProducto = new modProducto(); try { string operacion; operacion = "WHERE Codigo LIKE '%" + txtBuscar.Text + "%' OR Descripcion LIKE '%" + txtBuscar.Text + "%' OR Marca like '%" + txtBuscar.Text + "%' OR Categoria like '%" + txtBuscar.Text + "%'"; grilla.DataSource = modProducto.cargarProductoTabla(operacion).Tables["rsProducto"]; } catch (MySqlException ex) { MessageBox.Show(ex.StackTrace); } }
private void frmBuscarProducto_Load(object sender, EventArgs e) { modProducto modProducto = new modProducto(); grilla.DataSource = modProducto.cargarProductoTabla("").Tables["rsProducto"]; }