There was an error while loading. Please reload this page.
1 parent 1d29823 commit d9db1d3Copy full SHA for d9db1d3
django/contrib/localflavor/ar/forms.py
@@ -81,6 +81,7 @@ class ARCUITField(RegexField):
81
default_error_messages = {
82
'invalid': _('Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.'),
83
'checksum': _("Invalid CUIT."),
84
+ 'legal_type': _('Invalid legal type. Type must be 27, 20, 23 or 30.'),
85
}
86
87
def __init__(self, max_length=None, min_length=None, *args, **kwargs):
@@ -96,6 +97,8 @@ def clean(self, value):
96
97
if value in EMPTY_VALUES:
98
return ''
99
value, cd = self._canon(value)
100
+ if not value[:2] in ['27', '20', '23', '30']:
101
+ raise ValidationError(self.error_messages['legal_type'])
102
if self._calc_cd(value) != cd:
103
raise ValidationError(self.error_messages['checksum'])
104
return self._format(value, cd)
tests/regressiontests/localflavor/ar/tests.py
@@ -81,6 +81,7 @@ def test_ARDNIField(self):
def test_ARCUITField(self):
error_format = ['Enter a valid CUIT in XX-XXXXXXXX-X or XXXXXXXXXXXX format.']
error_invalid = ['Invalid CUIT.']
+ error_legal_type = [u'Invalid legal type. Type must be 27, 20, 23 or 30.']
valid = {
'20-10123456-9': '20-10123456-9',
@@ -94,8 +95,9 @@ def test_ARCUITField(self):
94
95
'210123456-9': error_format,
'20-10123456': error_format,
'20-10123456-': error_format,
- '20-10123456-5': error_invalid,
- '27-10345678-1': error_invalid,
+ '20-10123456-5': error_invalid,
+ '27-10345678-1': error_invalid,
+ '11211111110': error_legal_type,
self.assertFieldOutput(ARCUITField, valid, invalid)
0 commit comments