private void btnGuardar_Click(object sender, EventArgs e) { try { this.txtMensajeError.Visible = false; List <Error> Errores = this.ValidarDatos(); if (Errores.Count == 0) { ReporteConsumoMaterial Datos = this.ObtenerDatos(); ReporteConsumoMaterial_Negocio Neg = new ReporteConsumoMaterial_Negocio(); int IDReporte = Neg.GenerarReporteConsumoMaterial(Comun.Conexion, Datos.FechaInicio, Datos.FechaFin, Comun.IDUsuario, id_sucursal); if (IDReporte > 0) { //Generar el reporte frmVerReporteConsumoMaterial VerReporte = new frmVerReporteConsumoMaterial(IDReporte); VerReporte.ShowDialog(); VerReporte.Dispose(); this.DialogResult = DialogResult.OK; } else { MessageBox.Show("Ocurrió un error al generar el reporte.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { this.MostrarMensajeError(Errores); } } catch (Exception ex) { LogError.AddExcFileTxt(ex, "frmNuevoReporte ~ btnGuardar_Click"); MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnImpresion_Click(object sender, EventArgs e) { try { if (this.GridViewGeneral.SelectedRows.Count == 1) { ReporteConsumoMaterial Datos = this.ObtenerDatosReporte(); frmVerReporteConsumoMaterial VerReporte = new frmVerReporteConsumoMaterial(Datos.IDReporte); VerReporte.ShowDialog(); VerReporte.Dispose(); } else { MessageBox.Show("Seleccione una fila.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } } catch (Exception ex) { LogError.AddExcFileTxt(ex, "frmReportesConsumoMaterial ~ btnImpresion_Click"); MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error); } }