private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaUnidadMedida(); f.ShowDialog(); if (f._UndUnm != "") { UND = FunUND.BuscarUnd(f._UndUnm); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaGrupoPersonal(); f.ShowDialog(); if (f._CodGco != "") { GCO = FunGCO.Buscar(Convert.ToInt32(f._CodGco)); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaProductos(); f.ShowDialog(); if (f._CodPro != "") { PRO = FunPRO.Buscar(Convert.ToInt32(f._CodPro)); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaGrupoInventario(); f.ShowDialog(); if (f._CodGru != "") { ASID = FunASID.Buscar(Convert.ToInt32(f._CodGru)); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaPersonal(); f.ShowDialog(); if (f._CedPer != "") { PER = FunPER.Buscar(Convert.ToInt32(f._CedPer)); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaTipoIVA(); f.ShowDialog(); if (f._TipTiv != "") { TIV = FunTIV.BuscarTip(f._TipTiv); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaDepartamentos(); f.ShowDialog(); if (f._CodDpt != "") { DP = FunDP.Buscar(Convert.ToInt32(f._CodDpt)); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaTransacciones(); f.ShowDialog(); if (f._TipTra != "") { TIPTRA = FunTIPTRA.BuscarTipo(f._TipTra); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaMovimientos(); f.ShowDialog(); if (f._CodInv != "") { MOVINV = FunMOVINV.Buscar(Convert.ToInt32(f._CodInv)); Actualizar(); } }
private void Cmd_Buscar_Click(object sender, EventArgs e) { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaTMovCaja(); f.ShowDialog(); if (f._TipTmc != "") { TMC = FunTMC.BuscarTipo(f._TipTmc); Actualizar(); } }
private void Txt_CedPer_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: e.SuppressKeyPress = true; if (Txt_CedPer.Text.Trim() != "") { if (FunPER.Existe(Convert.ToInt32(Txt_CedPer.Text))) { if (FunPER.StatudAI(Convert.ToInt32(Txt_CedPer.Text))) { Llenar_Lb_NomPer(Convert.ToInt32(Txt_CedPer.Text)); Util.CambiarTxt(Txt_CedPer, Txt_ComAsd); } else { MessageBox.Show("El trabajador se encuentra egresado", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CedPer.SelectAll(); } } else { MessageBox.Show("El trabajador no extiste.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CedPer.SelectAll(); } } else { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaPersonalAI(); f.ShowDialog(); if (f._CedPer != "") { Txt_CedPer.Text = f._CedPer; Llenar_Lb_NomPer(Convert.ToInt32(Txt_CedPer.Text)); Util.CambiarTxt(Txt_CedPer, Txt_ComAsd); } } break; case Keys.Escape: e.SuppressKeyPress = true; Cmd_Cancelar.PerformClick(); Txt_ComAsd.Text = ""; break; } }
private void Txt_TipTiv_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: e.SuppressKeyPress = true; if (Txt_TipTiv.Text.Trim() != "") { if (FunTIP.Existe(Txt_TipTiv.Text)) { if (FunTIP.StatudAI(Txt_TipTiv.Text)) { Llenar_Lb_DesTiv(Txt_TipTiv.Text); Util.CambiarTxt(Txt_TipTiv, Txt_PrePro); } else { MessageBox.Show("El tipo de IVA se encuentra inactivo", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_TipTiv.SelectAll(); } } else { MessageBox.Show("El tipo de IVA no existe", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_TipTiv.SelectAll(); } } else { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaTipoIVAAI(); f.ShowDialog(); if (f._TipTiv != "") { Txt_TipTiv.Text = f._TipTiv; Llenar_Lb_DesTiv(f._TipTiv); Util.CambiarTxt(Txt_TipTiv, Txt_PrePro); } } break; case Keys.Escape: e.SuppressKeyPress = true; Util.CambiarTxt(Txt_TipTiv, Txt_CodGru); break; } }
private void Txt_CodGru_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: e.SuppressKeyPress = true; if (Txt_CodGru.Text.Trim() != "") { if (FunGRU.Existe(Convert.ToInt32(Txt_CodGru.Text))) { if (FunGRU.StatudAI(Convert.ToInt32(Txt_CodGru.Text))) { Llenar_Lb_DesGru(Convert.ToInt32(Txt_CodGru.Text)); Util.CambiarTxt(Txt_CodGru, Txt_TipTiv); } else { MessageBox.Show("El grupo se encuentra inactivo.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CodGru.SelectAll(); } } else { MessageBox.Show("El grupo no existe.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CodGru.SelectAll(); } } else { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaGrupoInventarioAI(); f.ShowDialog(); if (f._CodGru != "") { Txt_CodGru.Text = f._CodGru; Llenar_Lb_DesGru(Convert.ToInt32(f._CodGru)); Util.CambiarTxt(Txt_CodGru, Txt_TipTiv); } } break; case Keys.Escape: e.SuppressKeyPress = true; Util.CambiarTxt(Txt_CodGru, Txt_UndUnm); break; } }
private void Txt_UndUnm_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: e.SuppressKeyPress = true; if (Txt_UndUnm.Text.Trim() != "") { if (FunUND.Existe(Txt_UndUnm.Text)) { if (FunUND.StatudAI(Txt_UndUnm.Text)) { Llenar_Lb_DesUnm(Txt_UndUnm.Text); Util.CambiarTxt(Txt_UndUnm, Txt_CodGru); } else { MessageBox.Show("La unidad se encuentra inactivo.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_UndUnm.SelectAll(); } } else { MessageBox.Show("La unidad no existe.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_UndUnm.SelectAll(); } } else { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaUnidadMedidaAI(); f.ShowDialog(); if (f._UndUnm != "") { Txt_UndUnm.Text = f._UndUnm; Llenar_Lb_DesUnm(f._UndUnm); Util.CambiarTxt(Txt_UndUnm, Txt_CodGru); } } break; case Keys.Escape: e.SuppressKeyPress = true; Util.CambiarTxt(Txt_UndUnm, Txt_DesPro); break; } }
private void Txt_CodGco_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: e.SuppressKeyPress = true; if (Txt_CodGco.Text.Trim() != "") { if (FunGCO.Existe(Convert.ToInt32(Txt_CodGco.Text))) { if (FunDP.StatudAI(Convert.ToInt32(Txt_CodGco.Text))) { Llenar_Lb_DesGco(Convert.ToInt32(Txt_CodGco.Text)); Util.CambiarTxt(Txt_CodGco, Dat_FeiPer); } else { MessageBox.Show("El departamento se encuentra inactivo", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CodGco.Focus(); } } else { MessageBox.Show("El departamento no existe.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CodGco.Focus(); } } else { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaGrupoPersonalAI(); f.ShowDialog(); if (f._CodGco != "") { Txt_CodGco.Text = f._CodGco; Llenar_Lb_NomDpt(Convert.ToInt32(f._CodGco)); Util.CambiarTxt(Txt_CodGco, Dat_FeiPer); } } break; case Keys.Escape: e.SuppressKeyPress = true; Util.CambiarTxt(Txt_CodGco, Txt_CodDpt); break; } }
private void Txt_TipTra_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: e.SuppressKeyPress = true; if (Txt_TipTra.Text.Trim() != "") { if (FunTIPTRA.Existe(Txt_TipTra.Text)) { if (FunTIPTRA.StatusAI(Txt_TipTra.Text)) { Llenar_Lb_TipTra(Txt_TipTra.Text); Util.CambiarTxt(Txt_TipTra, Txt_ComMov); } else { MessageBox.Show("La transacción se encuentra inactiva", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_TipTra.SelectAll(); } } else { MessageBox.Show("La transacción no existe en el sistema.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_TipTra.SelectAll(); } } else { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaTransaccionesAI(); f.ShowDialog(); if (f._TipTra != "") { Txt_TipTra.Text = f._TipTra; Llenar_Lb_TipTra(Txt_TipTra.Text); Util.CambiarTxt(Txt_TipTra, Txt_ComMov); } } break; case Keys.Escape: e.SuppressKeyPress = true; Cmd_Cancelar.PerformClick(); break; } }
private void Txt_CodDpt_KeyDown(object sender, KeyEventArgs e) { switch (e.KeyCode) { case Keys.Enter: e.SuppressKeyPress = true; if (Txt_CodDpt.Text.Trim() != "") { if (FunDP.Existe(Convert.ToInt32(Txt_CodDpt.Text))) { if (FunDP.StatudAI(Convert.ToInt32(Txt_CodDpt.Text))) { Llenar_Lb_NomDpt(Convert.ToInt32(Txt_CodDpt.Text)); Cmd_Guardar.PerformClick(); } else { MessageBox.Show("El departamento se encuentra inactivo", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CodDpt.Focus(); } } else { MessageBox.Show("El departamento no existe.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop); Txt_CodDpt.Focus(); } } else { FormBUSQUEDAS f = new FormBUSQUEDAS(); f.ListaDepartamentosAI(); f.ShowDialog(); if (f._CodDpt != "") { Txt_CodDpt.Text = f._CodDpt; Llenar_Lb_NomDpt(Convert.ToInt32(f._CodDpt)); Cmd_Guardar.PerformClick(); } } break; case Keys.Escape: e.SuppressKeyPress = true; Util.CambiarTxt(Txt_CodDpt, Txt_NomUsu); break; } }