This commit is contained in:
michael.reiswich
2021-05-21 21:33:53 +02:00
parent 89f06a4ea6
commit 82c7a0cb8e
4 changed files with 30 additions and 3 deletions

View File

@@ -127,6 +127,10 @@ export default function (globalData: IGlobalData) {
item.SetRightLabel("~r~- $" + moneyFormat(Number(p.healthInsurance.toFixed(2))));
paycheckMenu.AddItem(item);
item = new UIMenuItem("Rundfunkbeitrag");
item.SetRightLabel("~r~- $" + moneyFormat(Number(p.gez.toFixed(2))));
paycheckMenu.AddItem(item);
item = new UIMenuItem("Einkommensteuer");
item.SetRightLabel(moneyFormat(Number((p.financialInterest * 100).toFixed(3))) + "%");

View File

@@ -48,6 +48,7 @@ declare type Paycheck = {
amount: number;
rentalFees: number;
healthInsurance: number;
gez: number;
factionMoney: number;
otheramount: number;
}