MH: Lebenswert Pauschalen

This commit is contained in:
2023-07-04 10:43:49 +02:00
parent 24c304c2f9
commit f8bf07e168
2 changed files with 4 additions and 3 deletions

View File

@@ -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
};

View File

@@ -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;
}
}