public void llenarGrid(int idAula) { //string idAula = (lblAula.Text); TablaEquipo.Rows.Clear(); ListaActivosPorAulas listado = new ListaActivosPorAulas(); listado = ActivoBLL.ListadoActivosTecnoligicosPorAulas(1); for (int i = 0; i < listado.Listado.Count(); i++) { TablaEquipo.Rows.Add(); TablaEquipo.Rows[i].Cells["Identificacion"].Value = listado.Listado[i].Identificacion.Trim(); TablaEquipo.Rows[i].Cells["Descripcion"].Value = listado.Listado[i].Descripcion; TablaEquipo.Rows[i].Cells["Marca"].Value = listado.Listado[i].Marca; TablaEquipo.Rows[i].Cells["Ubicacion"].Value = listado.Listado[i].Ubicacion; TablaEquipo.Rows[i].Cells["Proveedor"].Value = listado.Listado[i].Proveedor; TablaEquipo.Rows[i].Cells["NombreCategoria"].Value = listado.Listado[i].NombreCategoria; TablaEquipo.Rows[i].Cells["NombreAula"].Value = listado.Listado[i].NombreAula; TablaEquipo.Rows[i].Cells["Estados"].Value = listado.Listado[i].Estados; } }
/* ************** Metodos Form Activos Por Aula ***************/ public void buscarActivo(string id) { var activoBuscado = ActivoBLL.BuscarUnActivo(id); agregarActivos.cargarActivos(activoBuscado); // llamo al metodo que carga el fomrulario agregarActivos.Show(); // muestr el form agregarActivos.ocultarBotonesAlModificar(); // oculto el btn modificar }
private void button1_Click(object sender, EventArgs e) { string NumAula = (control.getLabelNumeroAula().Text); int AulaInsertarActivo = Convert.ToInt32(NumAula); double Depreciacion; int numFactura; string fecha; fecha = fechaCreacion.Value.ToString("yyyy-MM-dd"); Activo activos = new Activo { Identificacion = txtIdentificacionActivo.Text, Descripcion = txtDescripcion.Text, Marca = txtMarca.Text, Ubicacion = txtUbicacion.Text, //Revisado = Int32.Parse(cmbRevisado.SelectedValue.ToString()), Proveedor = txtProveedor.Text, // FechaCreacion = fecha, IdLeyAdquirida = Int32.Parse(cmbLeyAdquirida.SelectedValue.ToString()), IdCategoria = Int32.Parse(cmbCategoría.SelectedValue.ToString()), IdAula = AulaInsertarActivo, IdEstado = Int32.Parse(cmbEstado.SelectedValue.ToString()), IdUsuario = control.MiUsuario.IdUsuario, Depreciacion = "0" //FALTA DEPRESIACION }; ActivoBLL.Modificar(activos, control.MiUsuario); MessageBox.Show("Modificado agregado Correctamente"); limpiartxt(); this.Visible = false; control.RefrescarTablaActivosPorAulas(activos.IdAula); }
public void llenarGridActivosEnReparacion() { TablaEquipo.Rows.Clear(); ListadoActivoReparacion listado = ActivoBLL.ListadoActivosReparacion(); int index = 0; for (int i = 0; i < listado.Listado.Count(); i++) { if (listado.Listado[i].DetalleReparacion == null) { TablaEquipo.Rows.Add(); TablaEquipo.Rows[index].Cells["IdReparacion"].Value = listado.Listado[i].IdReparacion; TablaEquipo.Rows[index].Cells["Identificacion"].Value = listado.Listado[i].Identificacion.Trim(); TablaEquipo.Rows[index].Cells["Descripcion"].Value = listado.Listado[i].Descripcion; TablaEquipo.Rows[index].Cells["DetalleReparacion"].Value = listado.Listado[i].DetalleReparacion; index++; } } }
public void llenarGrid(int idBuscar) { string idAula = (lblAula.Text); TableActivos.Rows.Clear(); ListaActivosPorAulas listado = ActivoBLL.ListadoActivosPorAulas(Convert.ToInt32(idBuscar)); for (int i = 0; i < listado.Listado.Count(); i++) { TableActivos.Rows.Add(); TableActivos.Rows[i].Cells["Identificacion"].Value = listado.Listado[i].Identificacion; TableActivos.Rows[i].Cells["Descripcion"].Value = listado.Listado[i].Descripcion; TableActivos.Rows[i].Cells["Marca"].Value = listado.Listado[i].Marca; TableActivos.Rows[i].Cells["Ubicacion"].Value = listado.Listado[i].Ubicacion; TableActivos.Rows[i].Cells["Proveedor"].Value = listado.Listado[i].Proveedor; TableActivos.Rows[i].Cells["FechaCreacion"].Value = listado.Listado[i].FechaCreacion; TableActivos.Rows[i].Cells["Depreciacion"].Value = listado.Listado[i].Depreciacion; TableActivos.Rows[i].Cells["LeyAdquirida"].Value = listado.Listado[i].LeyAdquirida; TableActivos.Rows[i].Cells["NombreCategoria"].Value = listado.Listado[i].NombreCategoria; TableActivos.Rows[i].Cells["NombreAula"].Value = listado.Listado[i].NombreAula; TableActivos.Rows[i].Cells["Estados"].Value = listado.Listado[i].Estados; } }
private void btnAceptarActivos_Click(object sender, EventArgs e) { BorrarError(); if (ValidarCampos()) { // Validar los campos en blanco string NumAula = (control.getLabelNumeroAula().Text); int AulaInsertarActivo = Convert.ToInt32(NumAula); double Depreciacion; int numFactura; string fecha; fecha = fechaCreacion.Value.ToString("yyyy-MM-dd"); Activo activos = new Activo { Identificacion = txtIdentificacionActivo.Text, Descripcion = txtDescripcion.Text, Marca = txtMarca.Text, Ubicacion = txtUbicacion.Text, Proveedor = txtProveedor.Text, //FechaCreacion = fecha, IdLeyAdquirida = Int32.Parse(cmbLeyAdquirida.SelectedValue.ToString()), IdCategoria = Int32.Parse(cmbCategoría.SelectedValue.ToString()), IdAula = AulaInsertarActivo, IdEstado = Int32.Parse(cmbEstado.SelectedValue.ToString()), IdUsuario = control.MiUsuario.IdUsuario, Depreciacion = "0" }; Activo a = ActivoBLL.BuscarUnActivo(txtIdentificacionActivo.Text); if (a.Codigo == 99) { ActivoBLL.AgregarActivo(activos, control.MiUsuario); MessageBox.Show("Activo agregado Correctamente"); limpiartxt(); this.Visible = false; control.RefrescarTablaActivosPorAulas(activos.IdAula); } else { MessageBox.Show("Activo ya existe"); } } else { MessageBox.Show("Error al ingresar datos"); } }
public Activo buscarActivoReparar(string id) { var activoBuscado = ActivoBLL.BuscarUnActivo(id); return(activoBuscado); }