mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 03:13:12 +00:00
Fix cheque cotisations being saved twice
This commit is contained in:
parent
706b309a2a
commit
8f75078152
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ def cheque(request, invoice_pk):
|
|||
form = InvoiceForm(request.POST or None, instance=invoice)
|
||||
if form.is_valid():
|
||||
form.instance.valid = True
|
||||
form.save()
|
||||
# For is saved in call to end_payment
|
||||
return form.instance.paiement.end_payment(
|
||||
form.instance, request, use_payment_method=False
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue