diff --git a/InvenTree/InvenTree/serializers.py b/InvenTree/InvenTree/serializers.py index e125c234ce..4cea0a218c 100644 --- a/InvenTree/InvenTree/serializers.py +++ b/InvenTree/InvenTree/serializers.py @@ -46,7 +46,7 @@ class InvenTreeMoneySerializer(MoneyField): amount = None try: - if amount is not None: + if amount is not None and amount is not empty: amount = Decimal(amount) except: raise ValidationError({