Commit cbcc4159 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #8229: Added handling for a special case in the validation of Spanish ID...

Fixed #8229: Added handling for a special case in the validation of Spanish ID numbers. Thanks to Marc Garcia for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8405 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 77c94928
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ class ESIdentityCardNumberField(RegexField):
            if not letter2:
                number, letter2 = number[:-1], int(number[-1])
            checksum = cif_get_checksum(number)
            if letter2 in [checksum, self.cif_control[checksum]]:
            if letter2 in (checksum, self.cif_control[checksum]):
                return value
            else:
                raise ValidationError, self.error_messages['invalid_cif']
@@ -180,5 +180,5 @@ class ESProvinceSelect(Select):
def cif_get_checksum(number):
    s1 = sum([int(digit) for pos, digit in enumerate(number) if int(pos) % 2])
    s2 = sum([sum([int(unit) for unit in str(int(digit) * 2)]) for pos, digit in enumerate(number) if not int(pos) % 2])
    return 10 - ((s1 + s2) % 10)
    return (10 - ((s1 + s2) % 10)) % 10
+2 −0
Original line number Diff line number Diff line
@@ -167,6 +167,8 @@ Traceback (most recent call last):
ValidationError: [u'Invalid checksum for NIE.']
>>> f.clean('B38790911')
'B38790911'
>>> f.clean('B31234560')
'B31234560'
>>> f.clean('B-3879091A')
'B3879091A'
>>> f.clean('B 38790917')