mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 11:23:10 +00:00
Fix: Error rename
This commit is contained in:
parent
8fb8e14a30
commit
34c5af62f4
1 changed files with 4 additions and 4 deletions
|
@ -719,7 +719,7 @@ def new_facture_solde(request, userid):
|
||||||
user = request.user
|
user = request.user
|
||||||
invoice = Facture(user=user)
|
invoice = Facture(user=user)
|
||||||
payment, _created = Paiement.objects.get_or_create(moyen='Solde')
|
payment, _created = Paiement.objects.get_or_create(moyen='Solde')
|
||||||
facture.paiement = payment
|
invoice.paiement = payment
|
||||||
# The template needs the list of articles (for the JS part)
|
# The template needs the list of articles (for the JS part)
|
||||||
article_list = Article.objects.filter(
|
article_list = Article.objects.filter(
|
||||||
Q(type_user='All') | Q(type_user=request.user.class_name)
|
Q(type_user='All') | Q(type_user=request.user.class_name)
|
||||||
|
@ -827,9 +827,9 @@ def recharge(request):
|
||||||
if refill_form.is_valid():
|
if refill_form.is_valid():
|
||||||
invoice = Facture(user=request.user)
|
invoice = Facture(user=request.user)
|
||||||
payment, _created = Paiement.objects.get_or_create(moyen='Rechargement en ligne')
|
payment, _created = Paiement.objects.get_or_create(moyen='Rechargement en ligne')
|
||||||
facture.paiement = payment
|
invoice.paiement = payment
|
||||||
facture.valid = False
|
invoice.valid = False
|
||||||
facture.save()
|
invoice.save()
|
||||||
purchase = Vente.objects.create(
|
purchase = Vente.objects.create(
|
||||||
facture=invoice,
|
facture=invoice,
|
||||||
name='solde',
|
name='solde',
|
||||||
|
|
Loading…
Reference in a new issue