private void tsbAnular_Click(object sender, EventArgs e) { if (Mensajes.preguntaAnular()) { try { if (HemodialisisDAL.anularHemodialisis(hemodialisis.idHemodialisis, hemodialisis.auditoria)) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.limpiarControles(this); GeneralC.deshabilitarControles(this); btnSalir.Enabled = true; tsbBuscar.Enabled = true; tsbNuevo.Enabled = true; Mensajes.mensajeInformacion(Mensajes.CONFIRMACION_ANULADO); } } catch (Exception ex) { Mensajes.mensajeError(ex); } } }
private void tsbGuardar_Click(object sender, EventArgs e) { try { if (validarDatos() == true) { if (Mensajes.preguntaGuardar()) { dgvResultadoLaboratorio.EndEdit(); objetoSolicitudLabCrear(); SolicitudLabDAL.guardarSolicitudLab(solicitudLab); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; tstImprimir.Enabled = true; tsbAnular.Enabled = true; Mensajes.mensajeInformacion(Mensajes.CONFIRMACION_GUARDADO); } } } catch (Exception ex) { Mensajes.mensajeError(ex); } }
private void ManualTarifarioServicioUI_Load(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; }
private void tsBtModificar_Click(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenu); tsBtCancelar.Enabled = true; tsBtGuardar.Enabled = true; dgvEstancia.Columns["dgExcluirEstancia"].ReadOnly = false; }
private void tsbNuevo_Click(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenuPatron); habilitarBotonesBusqueda(); GeneralC.limpiarControles(this); tsbCancelar.Enabled = true; tsbGuardar.Enabled = true; }
private void ConfiguracionManualServicioUI_Load(object sender, EventArgs e) { objManual.manualServicio(); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; }
private void TipoExamenUI_Load(object sender, EventArgs e) { validarGrilla(); GeneralC.deshabilitarControles(this); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.llenarCombo(Sentencias.PROVEEDOR_LABORATORIO_CONSULTAR, "Codigo", "Descripcion", cmbLaboratorio); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; }
private void HemodialisisUI_Load(object sender, EventArgs e) { hemodialisis = new Hemodialisis(); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); enlazarDgvMedicamento(); tsbBuscar.Enabled = true; tsbNuevo.Enabled = true; }
private void TipoExamenUI_Load(object sender, EventArgs e) { GeneralC.deshabilitarControles(this); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.llenarComboDatosDefinidor(tipoExamen.llenarComboTipoArchivo(), "Codigo", "Descripcion", cmbTipo); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; btnSalir.Enabled = true; }
private void EcocardiogramaUI_Load(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); validarGrilla(); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; btnSalir.Enabled = true; }
private void btnModificar_Click(object sender, EventArgs e) { if (MessageBox.Show(Mensajes.Modificar_FORM, Mensajes.NOMBRE_SOFT, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.habilitarControles(this); tsbCancelar.Enabled = true; tsbGuardar.Enabled = true; } }
private void tsbNuevo_Click(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.habilitarControles(this); GeneralC.limpiarControles(this); txtCodigo.ReadOnly = true; tipoExamen.idTipoExamen = ConstanteGeneral.PREDETERMINADO; tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; }
private void tstModificar_Click(object sender, EventArgs e) { if (Mensajes.preguntaSiNo(Mensajes.Modificar_FORM) == true) { GeneralC.deshabilitarBotones(ref tstMenuPatron); habilitarControles(); tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; } }
private void ClienteUI_Load(object sender, EventArgs e) { cliente = new Cliente(); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); iniciarCombos(); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; btnSalir.Enabled = true; }
public void cargarInformacionADatos() { List <string> paramtro = new List <string>(); DataRow dRows; DataTable dtDatos = new DataTable(); paramtro.Add(resultadoLab.auditoria.ToString()); paramtro.Add(resultadoLab.idOrdenMedica.ToString()); paramtro.Add(idProcedimiento.ToString()); try { dtDatos = GeneralC.cargarResultadosSQL(Sentencias.BUSCAR_PACIENTE_RESULTADO_LAB, paramtro); dRows = dtDatos.Rows[0]; txtAtencion.Text = dRows.Field <int>("idAtencion").ToString(); txtPaciente.Text = dRows.Field <string>("paciente").ToString(); txtIdentificacion.Text = dRows.Field <string>("Documento").ToString(); txtServicio.Text = dRows.Field <string>("Entorno").ToString(); txtOrdenMedica.Text = dRows.Field <int>("IdOrdenMedica").ToString(); txtProcedimiento.Text = dRows.Field <string>("procedimiento").ToString(); txtCodigoAdministradora.Text = dRows.Field <int>("IdContrato").ToString(); txtAdministradora.Text = dRows.Field <string>("Nombre").ToString(); resultadoLab.codigoGenero = dRows.Field <int>("IdGenero"); resultadoLab.estadoRegistro = dRows.Field <bool>("EstadoRegistro"); lbTitulo.Text = dRows.Field <string>("nombreExamen").ToString(); txtObservacion.Text = dRows.Field <string>("Observacion").ToString(); dtpMuestra.Value = dRows.Field <DateTime>("FechaMuestra"); dtpResultado.Value = dRows.Field <DateTime>("FechaResultado"); validarGrilla(); cargarParametrosLaboratorio(); GeneralC.deshabilitarControles(this); GeneralC.deshabilitarBotones(ref tstMenuPatron); btnSalir.Enabled = true; if (resultadoLab.estadoRegistro == true) { resultadoLab.codigoResultado = dRows.Field <int>("idResultado"); tstModificar.Enabled = true; tstImprimir.Enabled = true; tsbAnular.Enabled = true; } else { habilitarControles(); resultadoLab.codigoResultado = ConstanteGeneral.PREDETERMINADO; tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; } } catch (Exception ex) { Mensajes.mensajeError(ex); } }
private void tsbNuevo_Click(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.habilitarControles(this); GeneralC.deshabilitarControles(pnlInformacion); GeneralC.limpiarControles(this); cliente.codigo = null; tsbBuscarNit.Enabled = true; tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; }
private void tsbAnular_Click(object sender, EventArgs e) { if (MessageBox.Show(Mensajes.ANULAR_FORM, Mensajes.NOMBRE_SOFT, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { manualTarifarioServicioDAL.anularManualTarifario(Convert.ToInt16(txtCodigoManual.Text)); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); GeneralC.limpiarControles(this); MessageBox.Show(Mensajes.CONFIRMACION_ANULADO, Mensajes.NOMBRE_SOFT, MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void tsbCancelar_Click(object sender, EventArgs e) { if (Mensajes.preguntaSiNo(Mensajes.CANCELAR_FORM) == true) { GeneralC.deshabilitarControles(this); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.limpiarControles(this); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; btnSalir.Enabled = true; } }
private void InformeQuirurgicoUI_Load(object sender, EventArgs e) { informeQx = new InformeQuirurgico(); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); dtpFechaFin.Value = dtpFechaFin.Value.AddHours(+1); enlazarDgvProcedimiento(); enlazarDgvMedicamento(); tsbBuscar.Enabled = true; tsbNuevo.Enabled = true; btnSalir.Enabled = true; }
private void tsbCancelar_Click(object sender, EventArgs e) { if (MessageBox.Show(Mensajes.CANCELAR_FORM, Mensajes.NOMBRE_SOFT, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); GeneralC.limpiarControles(this); cliente.codigo = null; tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; btnSalir.Enabled = true; } }
private void tsbCancelar_Click(object sender, EventArgs e) { if (Mensajes.preguntaSiNo(Mensajes.CANCELAR_FORM) == true) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); GeneralC.limpiarControles(this); edicion = false; informeQx.idInformeQX = ConstanteGeneral.PREDETERMINADO; tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; btnSalir.Enabled = true; } }
private void tstModificar_Click(object sender, EventArgs e) { if (Mensajes.preguntaSiNo(Mensajes.Modificar_FORM) == true) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.habilitarControles(this); GeneralC.deshabilitarControles(pnlInformacion); dtpFecha.Enabled = true; hemodialisis.dtMedicamento.Rows.Add(); edicion = true; tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; } }
private void tsbNuevo_Click(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.habilitarControles(this); GeneralC.deshabilitarControles(pnlInformacion); GeneralC.limpiarControles(this); hemodialisis.idHemodialisis = ConstanteGeneral.PREDETERMINADO; dtpFecha.Enabled = true; tsbBuscarNit.Enabled = true; hemodialisis.dtMedicamento.Rows.Add(); edicion = true; tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; }
private void tstModificar_Click(object sender, EventArgs e) { if (Mensajes.preguntaSiNo(Mensajes.Modificar_FORM) == true) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.habilitarControles(this); GeneralC.deshabilitarControles(pnlInformacion); desactivadoPermanentemente(); informeQx.dtProcedimiento.Rows.Add(); informeQx.dtMedicamento.Rows.Add(); edicion = true; tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; } }
private void tsbNuevo_Click(object sender, EventArgs e) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.habilitarControles(this); GeneralC.deshabilitarControles(pnlInformacion); GeneralC.limpiarControles(this); desactivadoPermanentemente(); informeQx.idInformeQX = ConstanteGeneral.PREDETERMINADO; tsbBuscarPaciente.Enabled = true; informeQx.dtProcedimiento.Rows.Add(); informeQx.dtMedicamento.Rows.Add(); edicion = true; tsbGuardar.Enabled = true; tsbCancelar.Enabled = true; }
private void tsbAnular_Click(object sender, EventArgs e) { try { if (Mensajes.preguntaAnular() == true) { TipoExamenDAL.anularTipoExamen(Convert.ToInt32(txtCodigo.Text)); GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.deshabilitarControles(this); GeneralC.limpiarControles(this); tsbNuevo.Enabled = true; tsbBuscar.Enabled = true; btnSalir.Enabled = true; Mensajes.mensajeInformacion(Mensajes.CONFIRMACION_ANULADO); } } catch (Exception ex) { Mensajes.mensajeError(ex); } }
private void tsbAnular_Click(object sender, EventArgs e) { if (MessageBox.Show(Mensajes.ANULAR_FORM, Mensajes.NOMBRE_SOFT, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { try { if (ClienteDAL.anularCliente(cliente.codigo) == true) { GeneralC.deshabilitarBotones(ref tstMenuPatron); GeneralC.limpiarControles(this); GeneralC.deshabilitarControles(this); btnSalir.Enabled = true; tsbBuscar.Enabled = true; tsbNuevo.Enabled = true; MessageBox.Show(Mensajes.CONFIRMACION_ANULADO, Mensajes.NOMBRE_SOFT, MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception ex) { MessageBox.Show(ex.Message, Mensajes.NOMBRE_SOFT, MessageBoxButtons.OK, MessageBoxIcon.Warning); } } }