Files
BeWoPlaner/ReportImp/CaritasAachen/CustomReportCreator.cs

78 lines
2.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BeWo.Report;
using BeWo.Report.ReportObjects;
using DevExpress.XtraReports.UI;
namespace BeWo.CaritasAachen
{
public class CustomReportCreator : DefaultReportCreator
{
public override XtraReport CreateServiceOverviewAllCustomersReport(int month, int year, long orgaOid, long empOid, long? serviceCategoryOid, int startDay, int endDay)
{
List<ServicesOverviewRO> lROs = ServicesOverviewRO.Create(month, year, orgaOid, empOid, startDay, endDay);
if (lROs.Count > 0)
{
var rootReport = CreateServicesOverviewReportForRo(lROs[0]);
rootReport.CreateDocument();
for (int i = 1; i < lROs.Count; i++)
{
var lNext = CreateServicesOverviewReportForRo(lROs[i]);
lNext.CreateDocument();
rootReport.Pages.AddRange(lNext.Pages);
}
return rootReport;
}
return new XtraReport();
}
public override XtraReport CreateServiceOverviewSingleCustomerReport(long customerOid, int month, int year, long orgaOid, long empOid, long? serviceCategoryOid, int startDay, int endDay)
{
var ro = ServicesOverviewRO.Create(customerOid, month, year, false, orgaOid, empOid, startDay, endDay, serviceCategoryOid);
return CreateServicesOverviewReportForRo(ro);
}
private XtraReport CreateServicesOverviewReportForRo(ServicesOverviewRO ro)
{
IBeWoReport<ServicesOverviewRO> report = null;
if (!String.IsNullOrEmpty(ro.Costbearer))
{
if (ro.Costbearer.Contains("Jugend") || ro.Costbearer == "Stadt Alsdorf" || ro.Costbearer == "Stadt Herzogenrath")
{
report = new StundennachweisJA();
}
}
if (report == null)
{
if (ro.StartDate < new DateTime(2019, 1, 1))
{
report = new BeWo.CaritasAachen.Alt.Stundenzettel();
}
else if (ro.StartDate < new DateTime(2023, 1, 1))
{
report = new Stundenzettel2019();
}
else
{
report = new Quittierungsbeleg();
}
}
report.SetReportDataSource(ro);
return report as XtraReport;
}
}
}