diff --git a/ReportImp/IBAHSeV/IBAHSeV.csproj b/ReportImp/IBAHSeV/IBAHSeV.csproj
index 923d41b60..969de4adf 100644
--- a/ReportImp/IBAHSeV/IBAHSeV.csproj
+++ b/ReportImp/IBAHSeV/IBAHSeV.csproj
@@ -40,6 +40,7 @@
+
diff --git a/ReportImp/IBAHSeV/Invoicing/CustomInvoiceCreation.cs b/ReportImp/IBAHSeV/Invoicing/CustomInvoiceCreation.cs
index aa4092110..1c51a7e09 100644
--- a/ReportImp/IBAHSeV/Invoicing/CustomInvoiceCreation.cs
+++ b/ReportImp/IBAHSeV/Invoicing/CustomInvoiceCreation.cs
@@ -25,5 +25,11 @@ namespace IBAHS.Invoicing
return item;
}
+ public override IList CreateSummaryInvoiceItems(IList itemList,
+ DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap, Calculations calc, bool summaryPerMonth)
+ {
+ // Für bessere Übersicht AddRateFactorToUnitCount = true
+ return CreateSummaryInvoiceItems(itemList, invoicePeriod, scap, calc, summaryPerMonth, true);
+ }
}
}