diff --git a/ReportImp/LebenshilfeWolfsburg/Reporting/CustomReportCreator.cs b/ReportImp/LebenshilfeWolfsburg/Reporting/CustomReportCreator.cs index 75775631e..7d4a94805 100644 --- a/ReportImp/LebenshilfeWolfsburg/Reporting/CustomReportCreator.cs +++ b/ReportImp/LebenshilfeWolfsburg/Reporting/CustomReportCreator.cs @@ -206,7 +206,7 @@ namespace LebenshilfeWolfsburg.Reporting { if (c2s.CostBearer.Organisation.Function != null && !String.IsNullOrWhiteSpace(ro.Costbearer) && c2s.CostBearer.Organisation.Name == ro.Costbearer) function = c2s.CostBearer.Organisation.Function.Value; - if (c2s.SupportConcept.Customer.Team2CustomerList != null && c2s.SupportConcept.Customer.Team2CustomerList.Any(t => t.Team.Name.ToLower().Contains("ass") || t.Team.Name.ToLower().Contains("reh"))) + if (c2s.SupportConcept.Customer.Team2CustomerList != null && c2s.SupportConcept.Customer.Team2CustomerList.Any(t => t.Team.Name.ToLower() == "ass" || t.Team.Name.ToLower() == "reh")) ass = true; } }