From fb1aede2d3a8932b58919324ffb44e007954ec34 Mon Sep 17 00:00:00 2001 From: Alexandra Date: Thu, 12 Jun 2025 08:50:32 +0200 Subject: [PATCH] BloemelingUndTeckhaus/Invoicing/StandardInvoiceCreation.cs - alle RgPositionen einzeln --- .../Invoicing/StandardInvoiceCreation.cs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ReportImp/BloemelingUndTeckhaus/Invoicing/StandardInvoiceCreation.cs b/ReportImp/BloemelingUndTeckhaus/Invoicing/StandardInvoiceCreation.cs index f6517cd44..997bf368b 100644 --- a/ReportImp/BloemelingUndTeckhaus/Invoicing/StandardInvoiceCreation.cs +++ b/ReportImp/BloemelingUndTeckhaus/Invoicing/StandardInvoiceCreation.cs @@ -8,10 +8,9 @@ namespace BloemelingUndTeckhaus.Invoicing { public class StandardInvoiceCreation : InvoiceCreation { - public override IList CreateSummaryInvoiceItems(IList itemList, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap, - Calculations calc) - { - return base.CreateSummaryInvoiceItems(itemList, invoicePeriod, scap, calc); - } - } + public override IList CreateSummaryInvoiceItems(IList itemList, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap, Calculations calc) + { + return itemList; + } + } }