add GEZ
This commit is contained in:
@@ -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))) + "%");
|
||||
|
||||
1
ReallifeGamemode.Client/global.d.ts
vendored
1
ReallifeGamemode.Client/global.d.ts
vendored
@@ -48,6 +48,7 @@ declare type Paycheck = {
|
||||
amount: number;
|
||||
rentalFees: number;
|
||||
healthInsurance: number;
|
||||
gez: number;
|
||||
factionMoney: number;
|
||||
otheramount: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user