From f8bf07e168bfcde9e89e6c3b3123b4098ee00612 Mon Sep 17 00:00:00 2001 From: Marcel Hirschle Date: Tue, 4 Jul 2023 10:43:49 +0200 Subject: [PATCH] MH: Lebenswert Pauschalen --- ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHI.cs | 6 +++--- ReportImp/LebensWert/Invoicing/PauschalenHelper.cs | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHI.cs b/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHI.cs index c864ca330..b1ae54fce 100644 --- a/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHI.cs +++ b/ReportImp/LebensWert/Invoicing/CustomInvoiceCreationHI.cs @@ -233,9 +233,9 @@ namespace LebensWert.Invoicing UnitCount = unitCount, ItemDescription = "Kontaktpauschale", UnitDescription = "Pauschale pro direktem Kontakt", - AmountPerUnit = PauschalenHelper.NIENBURG_AMOUNT_SINCE_2023, - AmountTotal = PauschalenHelper.NIENBURG_AMOUNT_SINCE_2023 * unitCount, - GrossAmountTotal = PauschalenHelper.NIENBURG_AMOUNT_SINCE_2023 * unitCount, + AmountPerUnit = PauschalenHelper.HILDESHEIM_AMOUNT_SINCE_2023, + AmountTotal = PauschalenHelper.HILDESHEIM_AMOUNT_SINCE_2023 * unitCount, + GrossAmountTotal = PauschalenHelper.HILDESHEIM_AMOUNT_SINCE_2023 * unitCount, ItemPeriodStart = itemPeriodStart, ItemPeriodEnd = itemPeriodEnd }; diff --git a/ReportImp/LebensWert/Invoicing/PauschalenHelper.cs b/ReportImp/LebensWert/Invoicing/PauschalenHelper.cs index db7f6a46c..2d08aee82 100644 --- a/ReportImp/LebensWert/Invoicing/PauschalenHelper.cs +++ b/ReportImp/LebensWert/Invoicing/PauschalenHelper.cs @@ -13,5 +13,6 @@ namespace LebensWert.Invoicing public const decimal NIENBURG_AMOUNT_SINCE_2023 = 15.56m; + public const decimal HILDESHEIM_AMOUNT_SINCE_2023 = 16.14m; } }