8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-16 08:23:12 +00:00

[Printer] Specify in the Invoice who requested the printing

This commit is contained in:
Maxime Bombar 2018-10-15 02:13:36 +02:00 committed by root
parent 3e4b39bedb
commit 9cda39a1fe

View file

@ -175,7 +175,7 @@ def payment(request):
invoice.save() invoice.save()
Vente.objects.create( Vente.objects.create(
facture=invoice, facture=invoice,
name='Printing', name='Printing (requested by %s)' % request.user,
prix=users[user], prix=users[user],
number=1, number=1,
) )