From 53218e227e865afa923c8e7cc66fcc1da0eb0a2f Mon Sep 17 00:00:00 2001 From: Alexandra Date: Wed, 18 Feb 2026 16:38:24 +0100 Subject: [PATCH] =?UTF-8?q?PraxisPusteblume/CustomReportCreator=20-=20Korr?= =?UTF-8?q?ektur=20Zuordnung=20QBs=20nach=20Umbenunngen=20Kostentr=C3=A4ge?= =?UTF-8?q?r=20(dererseits)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ReportImp/PraxisPusteblume/CustomReportCreator.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ReportImp/PraxisPusteblume/CustomReportCreator.cs b/ReportImp/PraxisPusteblume/CustomReportCreator.cs index a0e19fdf0..12e16268e 100644 --- a/ReportImp/PraxisPusteblume/CustomReportCreator.cs +++ b/ReportImp/PraxisPusteblume/CustomReportCreator.cs @@ -75,7 +75,7 @@ namespace PraxisPusteblume { if (s.IsBillable) { - if (s.ServiceCategory.StartsWith("IFS - ")) + if (s.ServiceCategory.ToLower().StartsWith("ifs ")) { //if (s.CostBearer.Contains("Bezirk Oberbayern - IFS")) //{ @@ -89,7 +89,7 @@ namespace PraxisPusteblume //{ // ifsEingangsdiagnostikRo.Services.Add(s); //} - if (s.CostBearer.Contains("Bezirk Oberbayern - IFS")) + if (s.CostBearer.Contains("- IFS")) { if (!s.ServiceDescription.ToLower().Contains("offenes beratungsangebot")) @@ -163,7 +163,6 @@ namespace PraxisPusteblume { report = new T(); ((T)report).SetReportDataSource(ro); - } else { @@ -174,13 +173,11 @@ namespace PraxisPusteblume XtraReport newReport = new T(); ((T)newReport).SetReportDataSource(ro); - newReport.CreateDocument(); report.Pages.AddRange(newReport.Pages); } } return report; } - } }