From 1e372fc64d19d5e39d7d74780157469fcc195e9d Mon Sep 17 00:00:00 2001 From: HirschleM Date: Mon, 2 Mar 2026 07:55:58 +0100 Subject: [PATCH] =?UTF-8?q?MH:=20LebenshilfeStade=20Sammelbegriffe=20f?= =?UTF-8?q?=C3=BCr=20Sammelrechnung?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../LebenshilfeStade/Invoicing/CustomInvoiceCreation.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ReportImp/LebenshilfeStade/Invoicing/CustomInvoiceCreation.cs b/ReportImp/LebenshilfeStade/Invoicing/CustomInvoiceCreation.cs index 2e34db81b..08ab4567a 100644 --- a/ReportImp/LebenshilfeStade/Invoicing/CustomInvoiceCreation.cs +++ b/ReportImp/LebenshilfeStade/Invoicing/CustomInvoiceCreation.cs @@ -23,6 +23,14 @@ namespace LebenshilfeStade.Invoicing { var invoiceItem = base.CreateInvoiceItem(iServiceRecord, scap, calc); + // Sammelbegriffe für komp. Assistenz, qual. Assistenz und komp. Elternassistenz + if (iServiceRecord.ServiceDescription.CategoryName.ToLower().Contains("assistenz kompensatorisch")) + invoiceItem.ItemDescription = "komp. Fachleistungsstunden"; + if (iServiceRecord.ServiceDescription.CategoryName.ToLower().Contains("assistenz qualifiziert")) + invoiceItem.ItemDescription = "qual. Fachleistungsstunden"; + if (iServiceRecord.ServiceDescription.CategoryName.ToLower().Contains("elternassistenz kompensatorisch")) + invoiceItem.ItemDescription = "komp. Elternassistenz"; + var crp = scap.CostBearer2SupportConcept.CostBearer.CostRatePeriods; if (crp != null && crp.Count > 0) {