Browse Source

Fix : Evite le plantage si le montant vaut exactement le minimum

fix_note
Gabriel Detraz 7 years ago
committed by grizzly
parent
commit
e60196db9b
  1. 3
      cotisations/forms.py

3
cotisations/forms.py

@ -284,8 +284,7 @@ class RechargeForm(FormRevMixin, Form):
"""
value = forms.DecimalField(
label=_("Amount"),
min_value=0.01,
validators=[]
decimal_places=2,
)
payment = forms.ModelChoiceField(
queryset=Paiement.objects.none(),

Loading…
Cancel
Save