mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 03:43:12 +00:00
Les factures sont validées en post_paiement + bug fix paiement relation
This commit is contained in:
parent
2c96bde4b8
commit
f5fafb96e0
1 changed files with 1 additions and 2 deletions
|
@ -836,7 +836,6 @@ def credit_solde(request, user, **_kwargs):
|
||||||
else:
|
else:
|
||||||
price_ok = True
|
price_ok = True
|
||||||
if price_ok:
|
if price_ok:
|
||||||
invoice.valid = True
|
|
||||||
invoice.save()
|
invoice.save()
|
||||||
Vente.objects.create(
|
Vente.objects.create(
|
||||||
facture=invoice,
|
facture=invoice,
|
||||||
|
@ -852,6 +851,6 @@ def credit_solde(request, user, **_kwargs):
|
||||||
'balance': user.solde,
|
'balance': user.solde,
|
||||||
'title': _("Refill your balance"),
|
'title': _("Refill your balance"),
|
||||||
'action_name': _("Pay"),
|
'action_name': _("Pay"),
|
||||||
'max_balance': p.payment_method.maximum_balance,
|
'max_balance': find_payment_method(p).maximum_balance,
|
||||||
}, 'cotisations/facture.html', request)
|
}, 'cotisations/facture.html', request)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue