Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BE Vat Numbers should have a modulo 97 check and start wit 1 or 0 #2038

Merged
merged 1 commit into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions faker/providers/ssn/nl_BE/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,24 @@ def _checksum(digits):
vat_id_formats = ("BE##########",)

def vat_id(self) -> str:

vat_id_random_section = (
'#######'
)

vat_id_possible_initial_numbers = (
'0',
'1'
)
"""
http://ec.europa.eu/taxation_customs/vies/faq.html#item_11
:return: A random Belgian VAT ID
https://en.wikipedia.org/wiki/VAT_identification_number
:return: A random Belgian VAT ID starting with 0 or 1 and has a correct checksum with a modulo 97 check
"""
return self.bothify(self.random_element(self.vat_id_formats))
generated_initial_number = self.random_element(vat_id_possible_initial_numbers)
vat_without_check = self.bothify(generated_initial_number + vat_id_random_section)
vat_as_int = int(vat_without_check)
vat_check = 97 - (vat_as_int % 97)
vat_check_str = f"{vat_check:0>2}"

return "BE" + vat_without_check + vat_check_str