mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 17:06:27 +00:00
Merge branch 'cheque-payments-applied-twice' into 'master'
Fix cheque cotisations being saved twice Closes #236 See merge request federez/re2o!487
This commit is contained in:
commit
2374a2b4b8
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