public static bool recuperarLaboratorio(clsLaboratorio objLaboratorio) { List<SqlParameter> lstParametrosSQL = new List<SqlParameter>(); SqlParameter sqlParametro; lstParametrosSQL = crearLista(objLaboratorio); sqlParametro = new SqlParameter(); sqlParametro.ParameterName = "@Accion"; sqlParametro.Value = 3; sqlParametro.Direction = ParameterDirection.Input; lstParametrosSQL.Add(sqlParametro); sqlParametro = new SqlParameter(); sqlParametro.ParameterName = "@IdGenerado"; sqlParametro.Value = 0; sqlParametro.Direction = ParameterDirection.Output; lstParametrosSQL.Add(sqlParametro); int numResultado = clsGestorBD.ejecutarStoredProcedureInt("up_ManLaboratorio", lstParametrosSQL); if (numResultado != 0) { return true; } else { return false; } }
public frmLaboratorio() { InitializeComponent(); clsLaboratorio objLaboratorio = new clsLaboratorio(); objLaboratorio.Estado = "TODOS"; dtLaboratorios = ctrLaboratorio.seleccionarLaboratoriosCriterios(objLaboratorio); cargarGrilla(); }
private void btnActivar_Click(object sender, EventArgs e) { if (dgvLaboratorios.SelectedRows.Count > 0) { if (MessageBox.Show("¿Está seguro que desea activar este laboratorio?", "Mensaje", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.Yes) { numAccion = clsComun.RECUPERAR; numIdLaboratorio = Int32.Parse(dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[0].Value.ToString()); clsLaboratorio objLaboratorio = new clsLaboratorio(); objLaboratorio.IdLaboratorio = numIdLaboratorio; if (ctrLaboratorio.recuperarLaboratorio(objLaboratorio)) { dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[3].Value = "ACTIVO"; dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[1].Style.ForeColor = Color.Black; dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[1].Style.BackColor = Color.White; dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[2].Style.ForeColor = Color.Black; dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[2].Style.BackColor = Color.White; dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[3].Style.ForeColor = Color.Black; dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[3].Style.BackColor = Color.White; btnActivar.Visible = false; btnEliminar.Visible = true; MessageBox.Show("El laboratorio se activó exitosamente", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { if (MessageBox.Show("Ocurrió un error mientras se intentaba activar el laboratorio", "Mensaje", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error) != DialogResult.Cancel) { btnEliminar_Click(sender, e); } } } } else { MessageBox.Show("Debe seleccionar un laboratorio", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
private void mostrarInformacion(clsLaboratorio objLaboratorio, int numAccion) { if (numAccion != clsComun.INSERTAR) { txtNombreDetalle.Text = objLaboratorio.Nombre; txtCodigoDetalle.Text = objLaboratorio.Codigo; rtxtDescripcionDetalle.Text = objLaboratorio.Descripcion; } if (numAccion == clsComun.VER) { txtNombreDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuTextBox.SoloLectura.verdadero; txtCodigoDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuTextBox.SoloLectura.verdadero; rtxtDescripcionDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuRichTextBox.SoloLectura.verdadero; btnCancelar.Visible = false; btnGuardar.Text = "Volver"; } else { txtNombreDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuTextBox.SoloLectura.falso; txtCodigoDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuTextBox.SoloLectura.falso; rtxtDescripcionDetalle.Solo_Lectura = SistemaCentroSalud.Controles.cuRichTextBox.SoloLectura.falso; btnCancelar.Visible = true; btnGuardar.Text = "Guardar"; } clsComun.tabSiguiente(tbcLaboratorio, tbpBuscar, tbpDetalle); }
private void buscarCriterios(object sender, EventArgs e) { try { clsLaboratorio objLaboratorio = new clsLaboratorio(); objLaboratorio.Nombre = txtNombreBuscar.Text; objLaboratorio.Codigo = txtCodigoBuscar.Text; objLaboratorio.Estado = cboEstadoBuscar.SelectedItem.ToString(); dtLaboratorios = ctrLaboratorio.seleccionarLaboratoriosCriterios(objLaboratorio); cargarGrilla(); } catch { } }
private void btnVer_Click(object sender, EventArgs e) { if (dgvLaboratorios.SelectedRows.Count > 0) { numAccion = clsComun.VER; numIdLaboratorio = Int32.Parse(dgvLaboratorios.Rows[dgvLaboratorios.CurrentRow.Index].Cells[0].Value.ToString()); limpiarFormulario(); clsLaboratorio objLaboratorio = new clsLaboratorio(); objLaboratorio.IdLaboratorio = numIdLaboratorio; objLaboratorio = ctrLaboratorio.seleccionarLaboratorio(objLaboratorio); mostrarInformacion(objLaboratorio, numAccion); txtNombreDetalle.Focus(); } else { MessageBox.Show("Debe seleccionar un laboratorio", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }
private void btnGuardar_Click(object sender, EventArgs e) { if (numAccion == clsComun.VER) { clsComun.tabAnterior(tbcLaboratorio, tbpBuscar, tbpDetalle); limpiarFormulario(); txtNombreBuscar.Focus(); } else { if (validarFormulario()) { clsLaboratorio objLaboratorio = new clsLaboratorio(); objLaboratorio.IdLaboratorio = numIdLaboratorio; objLaboratorio.Codigo = txtCodigoDetalle.Text; objLaboratorio.Nombre = txtNombreDetalle.Text; objLaboratorio.Descripcion = rtxtDescripcionDetalle.Text; if (numAccion == clsComun.INSERTAR) { if (ctrLaboratorio.registrarLaboratorio(objLaboratorio)) { if (MessageBox.Show("El laboratorio se registró exitosamente\n¿Desea seguir registrando laboratorios?", "Mensaje", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.Yes) { limpiarFormulario(); txtNombreDetalle.Focus(); } else { clsComun.tabAnterior(tbcLaboratorio, tbpBuscar, tbpDetalle); limpiarFormulario(); txtNombreBuscar.Focus(); dtLaboratorios = ctrLaboratorio.seleccionarLaboratorios(objLaboratorio); cargarGrilla(); } } else { if (MessageBox.Show("Ocurrió un error mientras se intentaba registrar el laboratorio", "Mensaje", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error) != DialogResult.Cancel) { btnGuardar_Click(sender, e); } } } else if (numAccion == clsComun.MODIFICAR) { if (ctrLaboratorio.modificarLaboratorio(objLaboratorio)) { MessageBox.Show("El laboratorio se modificó exitosamente", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information); clsComun.tabAnterior(tbcLaboratorio, tbpBuscar, tbpDetalle); limpiarFormulario(); txtNombreBuscar.Focus(); dtLaboratorios = ctrLaboratorio.seleccionarLaboratorios(objLaboratorio); cargarGrilla(); } else { if (MessageBox.Show("Ocurrió un error mientras se intentaba modificar el laboratorio", "Mensaje", MessageBoxButtons.RetryCancel, MessageBoxIcon.Error) != DialogResult.Cancel) { btnGuardar_Click(sender, e); } } } } } }
private static List<SqlParameter> crearLista(clsLaboratorio objLaboratorio) { List<SqlParameter> lstParametrosSQL = new List<SqlParameter>(); SqlParameter sqlParametro; foreach (PropertyInfo pi in objLaboratorio.GetType().GetProperties()) { if (pi.CanRead) { sqlParametro = new SqlParameter(); sqlParametro.ParameterName = "@" + pi.Name; sqlParametro.Value = pi.GetValue(objLaboratorio, null); sqlParametro.Direction = ParameterDirection.Input; lstParametrosSQL.Add(sqlParametro); } } return lstParametrosSQL; }
public static DataTable seleccionarLaboratoriosCriterios(clsLaboratorio objLaboratorio) { List<SqlParameter> lstParametrosSQL = new List<SqlParameter>(); SqlParameter sqlParametro; lstParametrosSQL = crearLista(objLaboratorio); sqlParametro = new SqlParameter(); sqlParametro.ParameterName = "@Accion"; sqlParametro.Value = 6; sqlParametro.Direction = ParameterDirection.Input; lstParametrosSQL.Add(sqlParametro); sqlParametro = new SqlParameter(); sqlParametro.ParameterName = "@IdGenerado"; sqlParametro.Value = 0; sqlParametro.Direction = ParameterDirection.Output; lstParametrosSQL.Add(sqlParametro); return clsGestorBD.ejecutarStoredProcedureDataTable("up_ManLaboratorio", lstParametrosSQL); }
public static clsLaboratorio seleccionarLaboratorio(clsLaboratorio objLaboratorio) { List<SqlParameter> lstParametrosSQL = new List<SqlParameter>(); SqlParameter sqlParametro; lstParametrosSQL = crearLista(objLaboratorio); sqlParametro = new SqlParameter(); sqlParametro.ParameterName = "@Accion"; sqlParametro.Value = 4; sqlParametro.Direction = ParameterDirection.Input; lstParametrosSQL.Add(sqlParametro); sqlParametro = new SqlParameter(); sqlParametro.ParameterName = "@IdGenerado"; sqlParametro.Value = 0; sqlParametro.Direction = ParameterDirection.Output; lstParametrosSQL.Add(sqlParametro); DataTable dtResultado = clsGestorBD.ejecutarStoredProcedureDataTable("up_ManLaboratorio", lstParametrosSQL); objLaboratorio.Codigo = dtResultado.Rows[0]["Codigo"].ToString(); objLaboratorio.Nombre = dtResultado.Rows[0]["Nombre"].ToString(); objLaboratorio.Descripcion = dtResultado.Rows[0]["Descripcion"].ToString(); return objLaboratorio; }