Limit maximum value of transaction at gift card creation (PRETIXEU-870)

This commit is contained in:
Raphael Michel
2023-03-01 13:32:03 +01:00
parent 4dfad2ef42
commit f70d6877dc

View File

@@ -578,7 +578,8 @@ class WebHookForm(forms.ModelForm):
class GiftCardCreateForm(forms.ModelForm):
value = forms.DecimalField(
label=_('Gift card value'),
min_value=Decimal('0.00')
min_value=Decimal('0.00'),
max_value=Decimal('99999999.99'),
)
def __init__(self, *args, **kwargs):