diff --git a/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHA.cs b/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHA.cs index a430400a5..abb46ed70 100644 --- a/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHA.cs +++ b/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHA.cs @@ -82,7 +82,7 @@ namespace LebensWert.Invoicing List toAdd = new List(); foreach (var item in list) { - if (item.ItemDescription.ToLower() == "face to face" || item.ItemDescription.ToLower() == "begleitende maßnahmen" || item.ItemDescription.ToLower() == "arztbesuch") + if (item.ItemDescription.ToLower() == "face-to-face" || item.ItemDescription.ToLower() == "face to face" || item.ItemDescription.ToLower() == "begleitende maßnahmen" || item.ItemDescription.ToLower() == "arztbesuch") { toAdd.Add(CreateKontaktpauschalenItem(item.UnitCount, item.ItemPeriodStart, item.ItemPeriodEnd)); }