Skip to content

Commit

Permalink
Gegevens toeslagen 2025 toegevoegd op basis van nieuwe cijfers van be…
Browse files Browse the repository at this point in the history
…lastingdienst
  • Loading branch information
Hilbrand committed Jan 27, 2025
1 parent 13e6ea9 commit 2b5eb6f
Show file tree
Hide file tree
Showing 9 changed files with 295 additions and 31 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Categorieën van en tot, met per groep een percentage.
Wet Inkomstenbelasting 2001
https://wetten.overheid.nl/BWBR0011353/2024-04-30/0

https://www.belastingdienst.nl/wps/wcm/connect/nl/voorlopige-aanslag/content/voorlopige-aanslag-tarieven-en-heffingskortingen

## Arbeidskorting (AK)

Arbeidsinkomen, grenzen, afbouwpunt, afbouwfactor (afbouwpercentage als factor).
Expand All @@ -29,32 +31,55 @@ Dus bij AOW en geen inkomen of uitkering geen arbeidskorting.
Bij AOW en geen inkomen wel weer ouderenkorting.
Grafieken gaan nu uit van inkomen en AOW-leeftijd met inkomen.

https://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/belastingdienst/prive/inkomstenbelasting/heffingskortingen_boxen_tarieven/heffingskortingen/arbeidskorting/tabel-arbeidskorting-2025

## Algemene Heffingskorting (AHK)

Inkomen uit werk en woning, maximaal, afbouwpunt, afbouwfactor (afbouwpercentage als factor).

https://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/belastingdienst/prive/inkomstenbelasting/heffingskortingen_boxen_tarieven/heffingskortingen/algemene_heffingskorting/tabel-algemene-heffingskorting-2025

## Inkomsten afhankelijk combinatie korting (IACK)

Maximaal, inkomensgrens, opbouwpercentage.

https://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/belastingdienst/prive/inkomstenbelasting/heffingskortingen_boxen_tarieven/heffingskortingen/inkomensafhankelijke_combikorting/inkomensafhankelijke-combinatiekorting-2025

## Kindgebonden budget

https://wetten.overheid.nl/BWBR0022751/2024-01-01

Maximaal vermogen kindgebonden budget:
https://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/belastingdienst/prive/toeslagen/kindgebonden-budget/voorwaarden/vermogen/vermogen-kindgebonden-budget

## Kinderbijslag

https://www.svb.nl/nl/kinderbijslag/bedragen-betaaldagen/bedragen-kinderbijslag

## Huurtoeslag

https://wetten.overheid.nl/BWBR0008659/2024-01-01

Maximaal vermogen huurtoeslag
https://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/belastingdienst/prive/toeslagen/huurtoeslag/uw-vermogen-is-niet-te-hoog-voor-de-huurtoeslag/

## Hyptoheekaftrek


## Eigenwoningforfait

Het eigenwoningforfait is een bedrag dat wij in uw belastingaangifte bij uw inkomen tellen.
Maar alleen als u een koopwoning hebt die uw hoofdverblijf is.

https://www.belastingdienst.nl/wps/wcm/connect/nl/koopwoning/content/hoe-werkt-eigenwoningforfait

## Zorgtoeslag

https://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/themaoverstijgend/brochures_en_publicaties/informatieblad-zorgtoeslag-2023

Maximaal vermogen zorgtoeslag:
https://www.belastingdienst.nl/wps/wcm/connect/nl/zorgtoeslag/content/maximaal-vermogen-zorgtoeslag

# Sotfware Ontwikkelomgeving

## Recommended IDE Setup
Expand Down
2 changes: 1 addition & 1 deletion src/components/FooterPaneel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

<script setup lang="ts">
const gitHash = import.meta.env.VITE_GIT_COMMIT_HASH;
</script>
</script>
4 changes: 2 additions & 2 deletions src/components/WonenComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</n-space>
<n-button-group>
<n-button @click="setMaxHuur()" size="small">Max. Huurgrens</n-button>
<n-button @click="setAvgHuur()" size="small">Gemiddele Huur</n-button>
<n-button @click="setAvgHuur()" size="small">Gemiddelde Huur</n-button>
</n-button-group>
</n-space>
</div>
Expand Down Expand Up @@ -98,7 +98,7 @@ export default {
this.gegevens.huur = belasting_data.HT[this.jaar].MaxHuur;
},
setAvgHuur(event) {
this.gegevens.huur = belasting_data.AVG_HUUR;
this.gegevens.huur = belasting_data.AVG_HUUR[this.jaar] || 0;
},
},
};
Expand Down
Loading

0 comments on commit 2b5eb6f

Please sign in to comment.