diff --git a/ReportImp/LebensBruecke/Reporting/CustomReportCreator.cs b/ReportImp/LebensBruecke/Reporting/CustomReportCreator.cs index 360c240ee..f732a5445 100644 --- a/ReportImp/LebensBruecke/Reporting/CustomReportCreator.cs +++ b/ReportImp/LebensBruecke/Reporting/CustomReportCreator.cs @@ -55,7 +55,7 @@ namespace LebensBruecke.Reporting var customerListOrd = customerList.OrderBy(c => c.Person.LastNameFirstName).ToList(); foreach (var c in customerListOrd) { - var ro = LwlPrueflisteRO.Create(start, end, "", c.Oid); + var ro = LwlPrueflisteRO.Create(start, end, "9030822", c.Oid); if (ro.ServiceRecords != null && ro.ServiceRecords.Count > 0) { try @@ -80,7 +80,7 @@ namespace LebensBruecke.Reporting { customerOid = oidOut; } - var ro = LwlPrueflisteRO.Create(start, end, "", customerOid); + var ro = LwlPrueflisteRO.Create(start, end, "9030822", customerOid); liste.SetReportDataSource(ro); return liste; }