diff --git a/ReportImp/KontaktUndKrisenhilfeReports/ServiceInvoiceReport.cs b/ReportImp/KontaktUndKrisenhilfeReports/ServiceInvoiceReport.cs index b152cfb56..bc28a6efa 100644 --- a/ReportImp/KontaktUndKrisenhilfeReports/ServiceInvoiceReport.cs +++ b/ReportImp/KontaktUndKrisenhilfeReports/ServiceInvoiceReport.cs @@ -64,7 +64,10 @@ namespace BeWo.KontaktUndKrisenhilfeReports ii.HourlyRateString = pRO.AmountEquityContribution; } - ii.ServiceDescription = "Direkte Leistung"; + if (!ii.ServiceDescription.ToLower().Contains("fehlkontakt")) + { + ii.ServiceDescription = "Direkte Leistung"; + } } } this.bindingSource1.DataSource = pRO;