private void btnImprimir_Click(object sender, EventArgs e) { try { BL.ClsReportes ClsReportes = new BL.ClsReportes(); DataTable dt = new DataTable(); FrmReporte frm = new FrmReporte(); dt = ClsReportes.rptRecibos(); frm.cargarReporte("RptRecibo", dt); } catch (Exception ex) { ClsHelper.erroLog(ex); } }
void mostrarEstadoCuenta() { try { BL.ClsReportes ClsReportes = new BL.ClsReportes(); DataSet dts = new DataSet(); FrmReporte FrmReporte = new FrmReporte(); dts = ClsReportes.rptEstadoCuenta(grdVenta.SelectedRows[0].Cells["idVentaCol"].Value.ToString()); FrmReporte.cargarReporte("RptEstadoCuenta", dts); } catch (Exception) { throw; } }
private void verEstadoDeCuentaToolStripMenuItem_Click(object sender, EventArgs e) { try { BL.ClsReportes ClsReportes = new BL.ClsReportes(); DataSet dts = new DataSet(); FrmReporte FrmReporte = new FrmReporte(); dts = ClsReportes.rptEstadoCuenta(grdDatos.SelectedRows[0].Cells["idVentaCol"].Value.ToString()); FrmReporte.cargarReporte("RptEstadoCuenta", dts); } catch (Exception ex) { ClsHelper.erroLog(ex); } }
private void btnImprimir_Click(object sender, EventArgs e) { try { BL.ClsReportes clsReporte = new BL.ClsReportes(); DataTable dt = new DataTable(); FrmReporte frmrep = new FrmReporte(); dt = clsReporte.rptVenta(idVenta); frmrep.cargarReporte("RptVenta", dt); DialogResult r = MessageBox.Show("¿Proceso finalizado, desea salir?", "Confirmar", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (r == DialogResult.Yes) { this.Dispose(); this.Close(); } } catch (Exception ex) { ClsHelper.erroLog(ex); } }
private void btnGenerarCotizacion_Click(object sender, EventArgs e) { try { if (txtCliente.Text != "") { if (txtSucursal.Text != "") { if (txtTelefono.Text != "") { if (txtVelidez.Text != "") { int i = 0; if (int.TryParse(txtVelidez.Text, out i)) { string ct = "Contado"; if (tipoCotizacion == "0") { ct = "Contado"; } else if (tipoCotizacion == "1") { ct = "Financiamiento"; } //ClsHelper.MensajeSistema("cuotas: " +cuotas); BL.ClsCotizacion clsCotizacion = new BL.ClsCotizacion(); DataTable dt = clsCotizacion.agregar(idVehiculo, txtCliente.Text, enganche, cuotas, cuotaMensual, precioNegociado, txtSucursal.Text, txtTelefono.Text, ct, total, txtVelidez.Text.Trim()); BL.ClsReportes clsReporte = new BL.ClsReportes(); if (dt.Rows.Count == 1) { DataTable dtt = clsReporte.reporteCotizacion(dt.Rows[0]["numeroCotizacion"].ToString()); FrmReporte rpt = new FrmReporte(); rpt.cargarReporte("RptCotizacion", dtt); } else { ClsHelper.MensajeSistema("no hgay cotizacion"); } deshabilitarControles(false); /*DataTable dt = clsReporte.rptCotizacionVehiculo( * idVehiculo, * txtCliente.Text, * enganche, * cuotas, * cuotaMensual, * txtSucursal.Text, * txtTelefono.Text, * ct, * total, * precioNegociado);*/ } else { ClsHelper.MensajeSistema("Validez debe ser un numero..."); } } else { ClsHelper.MensajeSistema("Debe ingresar dias de validez..."); } } else { ClsHelper.MensajeSistema("Debe ingresar telefono de contacto..."); } } else { ClsHelper.MensajeSistema("Debe ingresar direccion de la sucursal..."); } } else { ClsHelper.MensajeSistema("Debe ingresar nombre de cliente..."); } } catch (Exception ex) { ClsHelper.erroLog(ex); } }