Merge pull request #322 from eReuse/drop-imei-form

commit validation imei for mobiles
This commit is contained in:
cayop 2022-07-28 18:56:56 +02:00 committed by GitHub
commit 0c52598820
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1076,13 +1076,13 @@ class Mobile(Device):
@validates('imei')
def validate_imei(self, _, value: int):
if not imei.is_valid(str(value)):
if value and not imei.is_valid(str(value)):
raise ValidationError('{} is not a valid imei.'.format(value))
return value
@validates('meid')
def validate_meid(self, _, value: str):
if not meid.is_valid(value):
if value and not meid.is_valid(value):
raise ValidationError('{} is not a valid meid.'.format(value))
return value