mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
Fix le rechargement : la facture est sauvegardée avant la vente.
This commit is contained in:
parent
068a78a5ae
commit
a0c696edce
1 changed files with 2 additions and 3 deletions
|
@ -826,14 +826,13 @@ def recharge(request):
|
|||
invoice = Facture(user=request.user)
|
||||
invoice.paiement = refill_form.cleaned_data['payment']
|
||||
invoice.valid = False
|
||||
purchase = Vente.objects.create(
|
||||
invoice.save()
|
||||
Vente.objects.create(
|
||||
facture=invoice,
|
||||
name='solde',
|
||||
prix=refill_form.cleaned_data['value'],
|
||||
number=1
|
||||
)
|
||||
purchase.save()
|
||||
invoice.save()
|
||||
return invoice.paiement.end_payment(invoice, request)
|
||||
return form({
|
||||
'rechargeform': refill_form,
|
||||
|
|
Loading…
Reference in a new issue