From 3e2ed26759b5fa0b4be7d3ba77c5e736b4ea29e1 Mon Sep 17 00:00:00 2001 From: HirschleM Date: Mon, 1 Jun 2026 14:05:32 +0200 Subject: [PATCH] MH: PraxisPusteblume Erweiterung CustomInvoiceFactory --- ReportImp/PraxisPusteblume/Invoicing/CustomInvoiceFactory.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ReportImp/PraxisPusteblume/Invoicing/CustomInvoiceFactory.cs b/ReportImp/PraxisPusteblume/Invoicing/CustomInvoiceFactory.cs index 66c9b90f2..d3fa552f2 100644 --- a/ReportImp/PraxisPusteblume/Invoicing/CustomInvoiceFactory.cs +++ b/ReportImp/PraxisPusteblume/Invoicing/CustomInvoiceFactory.cs @@ -37,6 +37,10 @@ namespace PraxisPusteblume.Invoicing { return new SelbstzahlerInvoiceCreation(); } + if (sr.CostBearer.Name.Contains("Bezirk Oberbayern - Heilpädagogische Praxis ")) + { + return new DefaultInvoiceCreation(); + } } }