From 5568fc8bc7f4414c27538f44075e5b14dece48a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Elliott=20B=C3=A9cue?= Date: Mon, 10 Aug 2015 20:11:58 +0200 Subject: [PATCH] Affiche l'historique d'un objet facture --- gestion/whos.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gestion/whos.py b/gestion/whos.py index 8ee169f1..d2db9df5 100755 --- a/gestion/whos.py +++ b/gestion/whos.py @@ -701,7 +701,8 @@ def facture_details(facture) : f += coul(u"Articles :", "gras") + u"\n" f += list_articles(facture) f += u"\n" - f += coul(u"Total : ", "gras") + u"%s €\n" % facture.total() + f += coul(u"Total : ", "gras") + u"%s €" % facture.total() + f += "\n" # Mode de paiement f += coul(u"Mode de paiement : ", "gras") @@ -712,6 +713,8 @@ def facture_details(facture) : f += u"\n" f += coul(u"Contrôle : ", "gras") f += controle + f += u"\n" + f += _hist(facture) return f