8000 Fix Czech DIČ check digit calculation · waldemar-becker/python-stdnum@2cc39ea · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Mar 4, 2019. It is now read-only.

Commit 2cc39ea

Browse files
committed
Fix Czech DIČ check digit calculation
This fixes a bug in the check digit calculation for the 9-digit numbers that start with a 6 for individuals without a RČ. This also adds a few tests for Czech VAT numbers. See arthurdejong#51
1 parent d24a439 commit 2cc39ea

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

stdnum/cz/dic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# dic.py - functions for handling Czech VAT numbers
22
# coding: utf-8
33
#
4-
# Copyright (C) 2012, 2013 Arthur de Jong
4+
# Copyright (C) 2012-2017 Arthur de Jong
55
#
66
# This library is free software; you can redistribute it and/or
77
# modify it under the terms of the GNU Lesser General Public
@@ -64,8 +64,8 @@ def calc_check_digit_legal(number):
6464
def calc_check_digit_special(number):
6565
"""Calculate the check digit for special cases. The number passed
6666
should not have the first and last digits included."""
67-
check = (11 - sum((8 - i) * int(n) for i, n in enumerate(number))) % 11
68-
return str(9 - check % 10)
67+
check = sum((8 - i) * int(n) for i, n in enumerate(number)) % 11
68+
return str((8 - (10 - check) % 11 ) % 10)
6969

7070

7171
def validate(number):

tests/test_eu_vat.doctest

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,16 +103,28 @@ These have been found online and should all be valid numbers.
103103
... CZ 25123891
104104
... CZ 25577581
105105
... CZ 26852357
106+
... CZ 60 72 77 72
106107
... CZ 61467839
107108
... CZ 640229/4448
108109
... CZ 640903926
110+
... CZ 64628060
111+
... CZ 654123789
112+
... CZ 682127228
109113
... CZ 6956220612
110114
... CZ 736028/5163
111115
... CZ 8058012314
116+
... CZ00023205
117+
... CZ24158313
112118
... CZ26780259
119+
... CZ450 33 145
113120
... CZ48207926
114121
... CZ49620819
122+
... CZ6011270177
123+
... CZ6109220348
124+
... CZ61989100
115125
... CZ6306150004
126+
... CZ7205151536
127+
... CZ7652046248
116128
...
117129
... DE - 113866163
118130
... DE - 231969187

0 commit comments

Comments
 (0)
0