1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
# unp.py - functions for handling Belarusian UNP numbers
# coding: utf-8
#
# Copyright (C) 2020-2025 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
"""УНП, UNP (Учетный номер плательщика, the Belarus VAT number).
The УНП (UNP) or Учетный номер плательщика (Uchetniy nomer platel'shika,
Payer account number) is issued to organisations and individuals for tax
purposes. The number consists of 9 digits (numeric for organisations,
alphanumeric for individuals) and contains a region identifier, a serial per
region and a check digit.
More information:
* https://be.wikipedia.org/wiki/Уліковы_нумар_плацельшчыка
* http://pravo.levonevsky.org/bazaby09/sbor37/text37892/index3.htm
>>> validate('200988541')
'200988541'
>>> validate('УНП MA1953684')
'MA1953684'
>>> validate('200988542')
Traceback (most recent call last):
...
InvalidChecksum: ...
"""
from __future__ import annotations
from stdnum.exceptions import *
from stdnum.util import clean, isdigits
# Mapping of Cyrillic letters to Latin letters
_cyrillic_to_latin = dict(zip(
'АВЕКМНОРСТ',
'ABEKMHOPCT',
))
def compact(number: str) -> str:
"""Convert the number to the minimal representation. This strips the
number of any valid separators and removes surrounding whitespace."""
number = clean(number, ' ').upper().strip()
for prefix in ('УНП', 'UNP'):
if number.startswith(prefix):
number = number[len(prefix):]
# Replace Cyrillic letters with Latin letters
return ''.join(_cyrillic_to_latin.get(x, x) for x in number)
def calc_check_digit(number: str) -> str:
"""Calculate the check digit for the number."""
number = compact(number)
alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'
weights = (29, 23, 19, 17, 13, 7, 5, 3)
if not isdigits(number):
number = number[0] + str('ABCEHKMOPT'.index(number[1])) + number[2:]
c = sum(w * alphabet.index(n) for w, n in zip(weights, number)) % 11
if c > 9:
raise InvalidChecksum()
return str(c)
def validate(number: str) -> str:
"""Check if the number is a valid number. This checks the length,
formatting and check digit."""
number = compact(number)
if len(number) != 9:
raise InvalidLength()
if not isdigits(number[2:]):
raise InvalidFormat()
if not isdigits(number[:2]) and not all(x in 'ABCEHKMOPT' for x in number[:2]):
raise InvalidFormat()
if number[0] not in '1234567ABCEHKM':
raise InvalidComponent()
if number[-1] != calc_check_digit(number):
raise InvalidChecksum()
return number
def is_valid(number: str) -> bool:
"""Check if the number is a valid number."""
try:
return bool(validate(number))
except ValidationError:
return False
def check_nalog(
number: str,
timeout: float = 30,
verify: bool | str = True,
) -> dict[str, str | None] | None: # pragma: no cover (not part of normal test suite)
"""Retrieve registration information from the portal.nalog.gov.by web site.
The `timeout` argument specifies the network timeout in seconds.
The `verify` argument is either a boolean that determines whether the
server's certificate is validate or a string which must be a path the CA
certificate bundle to use for verification.
This basically returns the JSON response from the web service as a dict.
Will return ``None`` if the number is invalid or unknown.
"""
# this function isn't automatically tested because it would require
# network access for the tests and unnecessarily load the web service
# Since the nalog.gov.by web site currently provides an incomplete
# certificate chain, we provide our own.
import requests
response = requests.get(
'https://www.portal.nalog.gov.by/grp/getData',
params={
'unp': compact(number),
'charset': 'UTF-8',
'type': 'json'},
timeout=timeout,
verify=verify)
if response.ok and response.content:
return response.json()['row'] # type: ignore[no-any-return]
return None
|