From 376884113906e092f8a2cd92e2488d54cc7ff2d6 Mon Sep 17 00:00:00 2001 From: Alexandra Date: Mon, 14 Apr 2025 16:33:17 +0200 Subject: [PATCH] CaritasverbandDuerenJuelichEV/Invoicing/CustomInvoiceCreation - KEIN CheckMaxApprovedAmount mehr --- .../Invoicing/CustomInvoiceCreation.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ReportImp/CaritasverbandDuerenJuelichEV/Invoicing/CustomInvoiceCreation.cs b/ReportImp/CaritasverbandDuerenJuelichEV/Invoicing/CustomInvoiceCreation.cs index 80eb64553..a36e35585 100644 --- a/ReportImp/CaritasverbandDuerenJuelichEV/Invoicing/CustomInvoiceCreation.cs +++ b/ReportImp/CaritasverbandDuerenJuelichEV/Invoicing/CustomInvoiceCreation.cs @@ -64,5 +64,11 @@ namespace CaritasverbandDuerenJuelichEV.Invoicing } return ii; } + + public override void CheckMaxApprovedAmount(ServiceInvoice invoice, ServiceInvoicePeriod sip, SupportConceptApprovalPeriodDC scap, CostBearer2SupportConcept costBearer2SupportConcept, DateTimeSpan invoicePeriod, List serviceRecords) + { + // ab 14.04.2025 kein Check mehr + return; + } } }