diff --git a/ReportImp/ChristopherusHaus/CustomReportCreator.cs b/ReportImp/ChristopherusHaus/CustomReportCreator.cs index 724c0d902..f23a0d597 100644 --- a/ReportImp/ChristopherusHaus/CustomReportCreator.cs +++ b/ReportImp/ChristopherusHaus/CustomReportCreator.cs @@ -54,7 +54,7 @@ namespace ChristopherusHaus foreach (var c in customerListOrd) { zad = GetCustomerTeam(c); - var ro = LwlPrueflisteRO.Create(start, end, zad, c.Oid, "LWL (alt)"); + var ro = LwlPrueflisteRO.Create(start, end, zad, c.Oid, "LWL"); if (ro.ServiceRecords != null && ro.ServiceRecords.Count > 0) { try @@ -81,7 +81,7 @@ namespace ChristopherusHaus } var c = DAOFactory.GenericDAO.LoadByID(customerOid.Value); zad = GetCustomerTeam(c); - var ro = LwlPrueflisteRO.Create(start, end, zad, c.Oid, "LWL (alt)"); + var ro = LwlPrueflisteRO.Create(start, end, zad, c.Oid, "LWL"); liste.SetReportDataSource(ro); return liste; }