From 68b8ba7235a13a0bbbbcf59cc02f8c1ecd068791 Mon Sep 17 00:00:00 2001 From: Antoine Maas Date: Wed, 3 Jun 2026 09:35:13 +0200 Subject: [PATCH] regional(setup): add 0% and 6% VAT rates for Belgium (#54719) --- erpnext/setup/setup_wizard/data/country_wise_tax.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/erpnext/setup/setup_wizard/data/country_wise_tax.json b/erpnext/setup/setup_wizard/data/country_wise_tax.json index 87cb7a0c871..469b5c7baed 100644 --- a/erpnext/setup/setup_wizard/data/country_wise_tax.json +++ b/erpnext/setup/setup_wizard/data/country_wise_tax.json @@ -262,7 +262,15 @@ }, "Belgium VAT 12%": { "account_name": "VAT 12%", - "tax_rate": 12 + "tax_rate": 12.00 + }, + "Belgium VAT 6%": { + "account_name": "VAT 6%", + "tax_rate": 6.00 + }, + "Belgium VAT 0%": { + "account_name": "VAT 0%", + "tax_rate": 0.00 } },