mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-20 05:46:34 +00:00
Allow validation of empty money values
This commit is contained in:
@ -46,7 +46,7 @@ class InvenTreeMoneySerializer(MoneyField):
|
|||||||
amount = None
|
amount = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if amount is not None:
|
if amount is not None and amount is not empty:
|
||||||
amount = Decimal(amount)
|
amount = Decimal(amount)
|
||||||
except:
|
except:
|
||||||
raise ValidationError({
|
raise ValidationError({
|
||||||
|
Reference in New Issue
Block a user