From a624a7793a16fb2ed3a1e048c2259d4c4df3df03 Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Wed, 27 Mar 2024 09:32:45 +0100 Subject: [PATCH] =?UTF-8?q?MH:=20alphaEV=20Factory=20erg=C3=A4nzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ReportImp/AlphaEv/Invoicing/CustomInvoiceFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReportImp/AlphaEv/Invoicing/CustomInvoiceFactory.cs b/ReportImp/AlphaEv/Invoicing/CustomInvoiceFactory.cs index 42bfb841e..48b9ca5d7 100644 --- a/ReportImp/AlphaEv/Invoicing/CustomInvoiceFactory.cs +++ b/ReportImp/AlphaEv/Invoicing/CustomInvoiceFactory.cs @@ -14,7 +14,7 @@ namespace AlphaEv.Invoicing { public virtual SettlementInvoiceCreation CreateSettlementInvoiceCreator(string costbearerId, string tenant, CostBearer2SupportConcept lCb2Sc) { - if (lCb2Sc.CostBearer.Organisation.Name.Contains("Stadt") && lCb2Sc.CostBearer.Organisation.Name.Contains("Wuppertal")) + if (lCb2Sc.CostBearer.Organisation.Name.Contains("Stadt") && lCb2Sc.CostBearer.Organisation.Name.Contains("Wuppertal") || lCb2Sc.CostBearer.Organisation.Name.Contains("Stadt Remscheid") || lCb2Sc.CostBearer.Organisation.Name.Contains("Oberbergischer Kreis")) return new WuppertalSettlementInvoiceCreation(); return base.CreateSettlementInvoiceCreator(costbearerId, tenant, lCb2Sc); @@ -23,7 +23,7 @@ namespace AlphaEv.Invoicing { foreach (var sc2sr in supportConcepts2ServiceRecords) { - if (sc2sr.Key.CostBearer.Contains("Stadt") && sc2sr.Key.CostBearer.Contains("Wuppertal")) + if (sc2sr.Key.CostBearer.Contains("Stadt") && sc2sr.Key.CostBearer.Contains("Wuppertal") || sc2sr.Key.CostBearer.Contains("Stadt Remscheid") || sc2sr.Key.CostBearer.Contains("Oberbergischer Kreis")) return new CustomInvoiceCreation(); }