Example #1
0
 private void btnImprimirFactura_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e)
 {
     if (ClaseAcceso.VentasRealizadasImprimirSeleccion_)
     {
         xfrFacturaImpresionSecundaria report = new xfrFacturaImpresionSecundaria();
         report.DataSource = CargarDetalle();
         report.ShowPreview();
     }
 }
Example #2
0
 public void ImprimirSeleccion()
 {
     if (ClaseAcceso.VentasRealizadasImprimirSeleccion_)
     {
         xfrFacturaImpresionSecundaria report = new xfrFacturaImpresionSecundaria();
         report.DataSource = CargarDetalle();
         report.ShowPreview();
     }
 }