private void Update() { try { if (condpagoid.Text.Trim().Length != 3) { MessageBox.Show("Ingrese Código de condpago", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } else { if (condpagoname.Text.Trim().Length == 0) { MessageBox.Show("Ingrese nombre de condpago", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } else { var BL = new tb_condpagoBL(); var BE = new tb_condpago(); BE.condpagoid = condpagoid.Text.Trim(); BE.condpagoname = condpagoname.Text.Trim().ToUpper(); if (BL.Update(EmpresaID, BE)) { SEGURIDAD_LOG("M"); MessageBox.Show("Datos modificado correctamente !!!", "Confirmación", MessageBoxButtons.OK, MessageBoxIcon.Information); procesado = true; } } } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void form_cargar_datos(String posicion) { try { var BL = new tb_condpagoBL(); var BE = new tb_condpago(); var dt = new DataTable(); BE.condpagoid = condpagoid.Text.Trim(); BE.posicion = posicion.Trim(); dt = BL.GetAll_paginacion(EmpresaID, BE).Tables[0]; if (dt.Rows.Count > 0) { ssModo = "EDIT"; limpiar_documento(); condpagoid.Text = dt.Rows[0]["condpagoid"].ToString().Trim(); condpagoname.Text = dt.Rows[0]["condpagoname"].ToString().Trim(); btn_editar.Enabled = true; btn_eliminar.Enabled = true; btn_imprimir.Enabled = true; btn_primero.Enabled = true; btn_anterior.Enabled = true; btn_siguiente.Enabled = true; btn_ultimo.Enabled = true; btn_buscar.Enabled = true; btn_log.Enabled = true; btn_salir.Enabled = true; } else { limpiar_documento(); btn_editar.Enabled = false; btn_eliminar.Enabled = false; } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void Delete() { try { if (condpagoid.Text.Trim().Length != 3) { MessageBox.Show("Ingrese Código de condpago", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } else { var BL = new tb_condpagoBL(); var BE = new tb_condpago(); BE.condpagoid = condpagoid.Text.Trim(); if (BL.Delete(EmpresaID, BE)) { SEGURIDAD_LOG("E"); MessageBox.Show("Datos Eliminado correctamente !!!", "Confirmación", MessageBoxButtons.OK, MessageBoxIcon.Information); NIVEL_FORMS(); limpiar_documento(); form_bloqueado(false); data_Tablacondpago(); btn_nuevo.Enabled = true; } } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void data_Tablacondpago() { try { if (Tablacondpago != null) { Tablacondpago.Rows.Clear(); } var BL = new tb_condpagoBL(); var BE = new tb_condpago(); Tablacondpago = BL.GetAll(EmpresaID, BE).Tables[0]; if (Tablacondpago.Rows.Count > 0) { btn_imprimir.Enabled = true; gridcondpago.DataSource = Tablacondpago; gridcondpago.Rows[0].Selected = false; gridcondpago.Focus(); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
void CargarformaPago() { tb_condpago BE = new tb_condpago(); tb_condpagoBL BL = new tb_condpagoBL(); DataTable dt = new DataTable(); dt = BL.GetAll(EmpresaID, BE).Tables[0]; cmb_formapago.DataSource = dt; cmb_formapago.DisplayMember = "condpagoname"; cmb_formapago.ValueMember = "condpagoid"; }
private void Delete() { try { if (idper.Text.Trim().Length != 9) { MessageBox.Show("Seleccione Perfil !!!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } else { var BL = new tb_condpagoBL(); var BE = new tb_condpago(); if (BL.Delete(EmpresaID, BE)) { MessageBox.Show("Datos Eliminado correctamente !!!", "Confirmación", MessageBoxButtons.OK, MessageBoxIcon.Information); limpiar_documento(); form_bloqueado(false); btn_nuevo.Enabled = true; } } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }