ChristopherusHaus/CustomReportCreator.cs - Name LWL angepasst

This commit is contained in:
2025-10-16 09:51:58 +02:00
parent 2112f5a644
commit c0e0806bee

View File

@@ -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<Customer>(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;
}