public bool validarEliminar() { bool bRegresa = false; int iLocacionid = 0; iLocacionid = Convert.ToInt32(txt_LocacionNum.Text); if (MessageBox.Show("¿Desea Eliminar la Locacion: " + iLocacionid, "ABCExhibicion", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes) { CAccesoDatos.EliminarLocacion(iLocacionid); bRegresa = true; btn_EliminarClick = true; fLimpiarCampos(); fAtributosModificarEliminar(); } return(bRegresa); }
public void fLlenarGridArticulo() { OdbcConnection odbcSql = new OdbcConnection(); OdbcDataReader reader; string sComandoSQL = "", sValor = ""; int iRenglon = 0; try{ if (CAccesoDatos.abreconexionSql(odbcSql)) { sComandoSQL = string.Format("EXECUTE ComprasMuebles.dbo.proc_abcarticulos 0, '', '', '', 0, 0, 5"); reader = CAccesoDatos.ejecutarconsulta(sComandoSQL, odbcSql); while (reader.Read()) { dgvArticulos.Rows.Add(); sValor = reader[0].ToString(); dgvArticulos.Rows[iRenglon].Cells["Sku"].Value = sValor.Trim(); sValor = reader[1].ToString(); dgvArticulos.Rows[iRenglon].Cells["Nombre"].Value = sValor.Trim(); sValor = reader[2].ToString(); dgvArticulos.Rows[iRenglon].Cells["Modelo"].Value = sValor.Trim(); sValor = reader[3].ToString(); dgvArticulos.Rows[iRenglon].Cells["Marca"].Value = sValor.Trim(); sValor = reader[4].ToString(); dgvArticulos.Rows[iRenglon].Cells["Precio"].Value = sValor.Trim(); sValor = reader[5].ToString(); dgvArticulos.Rows[iRenglon].Cells["Existencia"].Value = sValor.Trim(); iRenglon++; } reader.Close(); } CAccesoDatos.cierraconexionSql(odbcSql); }catch (Exception ex) { MessageBox.Show(ex.Message, "Listado Promoción", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
public void fLlenarGridVenta() { OdbcConnection odbcSql = new OdbcConnection(); OdbcDataReader reader; string sComandoSQL = "", sValor = ""; int iRenglon = 0; try{ if (CAccesoDatos.abreconexionSql(odbcSql)) { sComandoSQL = string.Format("EXECUTE ComprasMuebles.dbo.proc_ventas 0, 0, 0, 0, 0, 0, 0, 5"); reader = CAccesoDatos.ejecutarconsulta(sComandoSQL, odbcSql); while (reader.Read()) { dgvVentas.Rows.Add(); sValor = reader[0].ToString(); dgvVentas.Rows[iRenglon].Cells["Num Venta"].Value = sValor.Trim(); sValor = reader[1].ToString(); dgvVentas.Rows[iRenglon].Cells["Cliente"].Value = sValor.Trim(); sValor = reader[2].ToString(); dgvVentas.Rows[iRenglon].Cells["$ Venta"].Value = sValor.Trim(); sValor = reader[3].ToString(); dgvVentas.Rows[iRenglon].Cells["Articulos Comprados"].Value = sValor.Trim(); sValor = reader[4].ToString(); dgvVentas.Rows[iRenglon].Cells["FechaVenta"].Value = sValor.Trim(); sValor = reader[5].ToString(); dgvVentas.Rows[iRenglon].Cells["FechaModificacionVenta"].Value = sValor.Trim(); iRenglon++; } reader.Close(); } CAccesoDatos.cierraconexionSql(odbcSql); }catch (Exception ex) { MessageBox.Show(ex.Message, "Listado Promoción", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
public bool validarGrabar() { bool bRegresa = false; int iArticuloid; string sArticuloNom = ""; string sMarca = ""; string sModelo = ""; decimal dPrecio = 0; int iExistencia = 0; iArticuloid = Convert.ToInt32(txt_iduarticulo.Text); sArticuloNom = txt_nombre.Text; sMarca = txt_Marca.Text; sModelo = txt_Modelo.Text; dPrecio = Convert.ToDecimal(txt_Precio.Text); iExistencia = Convert.ToInt32(txt_Stock.Text); bRegresa = CAccesoDatos.GrabarArticulo(iArticuloid, sArticuloNom, sModelo, sMarca, dPrecio, iExistencia); return(bRegresa); }
public bool validarGrabar() { bool bRegresa = false; CAddArticulo listaVenta = new CAddArticulo(); string sObtenerClientes = ""; decimal iTotalVenta; // int iArticulosComprados = 0; dtFechaHoy = DateTime.Now.ToString("MM/dd/yyyy H:mm"); // iArticulosComprados = Convert.ToInt32(listaVenta.iCantidad.ToString()); // string sFechaModificacion = ""; sObtenerClientes = cmb_VentaCliente.SelectedItem.ToString().Substring(0, cmb_VentaCliente.SelectedItem.ToString().IndexOf('-')).Trim(); iTotalVenta = Convert.ToDecimal(txt_VentaTotal.Text); bRegresa = CAccesoDatos.GrabarVenta(Convert.ToInt32(sObtenerClientes), iTotalVenta, iTotalArticulos, dtFechaHoy); return(bRegresa); }
public bool validarEliminar() { bool bRegresa = false; int iclienteid = 0; string sClienteNom = ""; iclienteid = Convert.ToInt32(txt_ClienteNum.Text); sClienteNom = txt_ClienteNom.Text; if (MessageBox.Show("¿Desea Eliminar El cliente: " + iclienteid + " - " + sClienteNom, "ABCExhibicion", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes) { CAccesoDatos.EliminarCliente(iclienteid); bRegresa = true; btn_EliminarClick = true; fLimpiarCampos(); fAtributosModificarEliminar(); } return(bRegresa); }
public bool validarModificar() { bool bRegresa = false; int iLocacionid = 0; string sMunicipio = " "; string sLocacion = ""; iLocacionid = Convert.ToInt32(txt_LocacionNum.Text); sMunicipio = txt_LocacionMunicipio.Text; sLocacion = txt_Locacion.Text; bRegresa = CAccesoDatos.ModificarLocacion(iLocacionid, sMunicipio, sLocacion); if (bRegresa) { btn_ModificarClick = true; fLimpiarCampos(); fAtributosModificarEliminar(); } return(bRegresa); }
public void fActualizarPlazoMaximoActual() { OdbcConnection odbcSql = new OdbcConnection(); OdbcDataReader reader; string sComandoSQL = ""; try{ if (CAccesoDatos.abreconexionSql(odbcSql)) { sComandoSQL = string.Format("EXECUTE ComprasMuebles.dbo.proc_abconfiguracion 1, 0, 0, 0, 3"); reader = CAccesoDatos.ejecutarconsulta(sComandoSQL, odbcSql); while (reader.Read()) { lbl_ConfPlazoActual.Text = reader["num_plazomaximo"].ToString(); } reader.Close(); } CAccesoDatos.cierraconexionSql(odbcSql); }catch (Exception ex) { MessageBox.Show(ex.Message, "Listado Promoción", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }