/*********************************/ /*********GUARDAR EDITAR**********/ /*********************************/ private void btnguardar_Click(object sender, EventArgs e) { frmDocentes Docentes = Owner as frmDocentes; objlogPersonas.EdadDocente(dtNacimiento.Value); string validacionE = validaCampos(); if (validacionE == "OK") { idPersonaBuscar = Convert.ToInt32(txt_id_Docente.Text); string nombreE = txtNombre.Text.Trim(); string apellidosE = txtApellidos.Text.Trim(); string documentoE = txtDocumento.Text.Trim(); DateTime nacimientoE = dtNacimiento.Value.Date; string calleE = txtCalle.Text.Trim(); string numeroE = txtNumero.Text.Trim(); string cpostalE = txtCPostal.Text.Trim(); string pisoE = txtPiso.Text.Trim(); string dptoE = txtDepto.Text.Trim(); string barrioE = txtBarrio.Text.Trim(); string telefonoE = txtTelefono.Text.Trim(); string celularE = txtCelular.Text.Trim(); string emailE = txtEmail.Text.Trim(); entPersona personaEditar = new entPersona(); string genero; if (cbGenero.SelectedItem == null) { genero = ""; } else { genero = cbGenero.SelectedItem.ToString(); } personaEditar.PER_ID = Convert.ToInt32(idPersonaBuscar); personaEditar.PER_NOMBRE = nombreE; personaEditar.PER_APELLIDO = apellidosE; personaEditar.PER_DOCUMENTO = Convert.ToInt32(documentoE); personaEditar.PER_GENERO = genero; personaEditar.PER_FECHA_NAC = nacimientoE; personaEditar.PER_TELEFONO = telefonoE; personaEditar.PER_TELEFONO_2 = celularE; personaEditar.PER_EMAIL = emailE; string resultadoE = objlogPersonas.editarPersona(personaEditar); entDomicilio domicilioEditar = new entDomicilio(); domicilioEditar.DOM_PER_ID = idPersonaBuscar; domicilioEditar.DOM_CALLE = calleE; domicilioEditar.DOM_NUMERO = Convert.ToInt32(numeroE); if (string.IsNullOrWhiteSpace(pisoE.Trim()) == true) { } else { domicilioEditar.DOM_PISO = Convert.ToInt32(pisoE); } domicilioEditar.DOM_DPTO = dptoE; domicilioEditar.DOM_BARRIO = barrioE; domicilioEditar.DOM_CP = Convert.ToInt32(cpostalE); resultadoE = objlogDomicilio.editarDomicilio(domicilioEditar); if (resultadoE == "OK") { string CARGO; if (Cbocargo.SelectedItem == null) { CARGO = ""; } else { CARGO = Cbocargo.SelectedItem.ToString(); if (CARGO == "TITULAR") { CARGO = "TITULAR"; } else { CARGO = "SUPLENTE"; } } string turno; if (cbTurno.SelectedItem == null) { turno = ""; } else { turno = cbTurno.SelectedItem.ToString(); if (turno == "MAÑANA") { turno = "MANANA"; } else { turno = "TARDE"; } } string id_sala; if (cbSala.SelectedItem == null) { id_sala = ""; } else { id_sala = cbSala.SelectedValue.ToString(); } if (turno == cbTurno.Text && id_sala == cbSala.Text) { MessageBox.Show("Se ha ingresado el registro con éxito.", "Ingresado", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } //else //{ entGrupoSala grupoSalaEditar = new entGrupoSala(); grupoSalaEditar.GRS_PER_ID = Convert.ToInt32(idPersonaBuscar); grupoSalaEditar.GRS_SAL_ID = Convert.ToInt32(id_sala); grupoSalaEditar.GRS_CARGO = CARGO.ToString(); resultadoE = objlogSalas.editarGrupoSala(grupoSalaEditar); if (resultadoE == "OK") { MessageBox.Show("Se actualizado ok el registro.", "Ingresado", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } else { MessageBox.Show("El cupo de docente en la sala y turno seleccionados ya esta completo", "Salir", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); cbTurno.SelectedIndex = -1; cbSala.SelectedIndex = -1; } //} } else { MessageBox.Show("NO OLVIDE INGRESAR " + validacionE + ".", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }
/* Valiación GLOBAL */ private string validaCampos() { logPersonas ObjMetOersonas = new logPersonas(); objlogPersonas.EdadDocente(dtNacimiento.Value); resultadoValidacion = ""; if (string.IsNullOrWhiteSpace(txtNombre.Text.Trim()) == true) { txtNombre.Style = MetroFramework.MetroColorStyle.Red; txtNombre.Focus(); resultadoValidacion = "el Nombre"; } else if (string.IsNullOrWhiteSpace(txtApellidos.Text.Trim()) == true) { txtApellidos.Style = MetroFramework.MetroColorStyle.Red; txtApellidos.Focus(); resultadoValidacion = "el Apellido"; } else if (string.IsNullOrWhiteSpace(txtDocumento.Text.Trim()) == true) { txtDocumento.Style = MetroFramework.MetroColorStyle.Red; txtDocumento.Focus(); resultadoValidacion = "el Documento"; } else if (string.IsNullOrWhiteSpace(txtCalle.Text.Trim()) == true) { txtCalle.Style = MetroFramework.MetroColorStyle.Red; txtCalle.Focus(); resultadoValidacion = "la Calle del domicilio"; } else if (string.IsNullOrWhiteSpace(txtNumero.Text.Trim()) == true) { txtNumero.Style = MetroFramework.MetroColorStyle.Red; txtNumero.Focus(); resultadoValidacion = "el Numero del domicilio"; } else if (string.IsNullOrWhiteSpace(txtCPostal.Text.Trim()) == true) { txtCPostal.Style = MetroFramework.MetroColorStyle.Red; txtCPostal.Focus(); resultadoValidacion = "el Código Postal"; } else if (string.IsNullOrWhiteSpace(txtBarrio.Text.Trim()) == true) { txtBarrio.Style = MetroFramework.MetroColorStyle.Red; txtBarrio.Focus(); resultadoValidacion = "el Barrio"; } else if (string.IsNullOrWhiteSpace(txtCelular.Text.Trim()) == true) { txtCelular.Style = MetroFramework.MetroColorStyle.Red; txtCelular.Focus(); resultadoValidacion = "un celular de contacto"; } else if (string.IsNullOrWhiteSpace(txtEmail.Text.Trim()) == true) { txtEmail.Style = MetroFramework.MetroColorStyle.Red; txtEmail.Focus(); resultadoValidacion = "el E-mail"; } else { resultadoValidacion = "OK"; } return(resultadoValidacion); }