Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/stdnum/vatin.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix vatin number compacting for "EU" VAT numbersArthur de Jong2024-02-031-2/+5
| | | | | | Thanks Davide Walder for finding this. Closes https://github.com/arthurdejong/python-stdnum/issues/427
* Add support for XI VAT numbers in vatinAlexis de Lattre2021-01-241-2/+2
| | | | Closes https://github.com/arthurdejong/python-stdnum/pull/251
* Support VAT numbers that are only valid with country prefixArthur de Jong2021-01-021-1/+5
| | | | | | | | | The Swish VAT number has the CH prefix embedded as a required part of the number. This ensures that the international VAT number module also supports that. Closes https://github.com/arthurdejong/python-stdnum/issues/245 Fixes ff188bd
* Add module to check any VAT numberLeandro Regueiro2020-08-091-0/+94
This effectively mimics vatnumber's `check_vat` function, so people can easily replace the outdated vatnumber library with stdnum. Closes https://github.com/arthurdejong/python-stdnum/pull/199