Beispiel #1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            CRAnticiposPorLegajo rpt = new CRAnticiposPorLegajo();

            rpt.Site = this.Site;
            return(rpt);
        }
Beispiel #2
0
        public static void ReporteDeAnticiposPorLegajo(DataSet fuente, String empresa, String version)
        {
            CRAnticiposPorLegajo crAnticiposPorLegajo = new CRAnticiposPorLegajo();

            crAnticiposPorLegajo.SetDataSource(fuente);
            crAnticiposPorLegajo.SetParameterValue(crAnticiposPorLegajo.Parameter_empresa.ParameterFieldName, empresa);
            crAnticiposPorLegajo.SetParameterValue(crAnticiposPorLegajo.Parameter_soft.ParameterFieldName, "SOffT " + version);
            FrmReportes visor = new FrmReportes(crAnticiposPorLegajo);

            visor.ShowDialog();
        }
Beispiel #3
0
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     CRAnticiposPorLegajo rpt = new CRAnticiposPorLegajo();
     rpt.Site = this.Site;
     return rpt;
 }
Beispiel #4
0
 public static void ReporteDeAnticiposPorLegajo(DataSet fuente, String empresa, String version)
 {
     CRAnticiposPorLegajo crAnticiposPorLegajo = new CRAnticiposPorLegajo();
     crAnticiposPorLegajo.SetDataSource(fuente);
     crAnticiposPorLegajo.SetParameterValue(crAnticiposPorLegajo.Parameter_empresa.ParameterFieldName, empresa);
     crAnticiposPorLegajo.SetParameterValue(crAnticiposPorLegajo.Parameter_soft.ParameterFieldName, "SOffT " + version);
     FrmReportes visor = new FrmReportes(crAnticiposPorLegajo);
     visor.ShowDialog();
 }