From 1eb39752d8c99d08a3527900bd90ebd821365db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Elliott=20B=C3=A9cue?= Date: Mon, 1 Sep 2014 02:47:52 +0200 Subject: [PATCH] =?UTF-8?q?[whos]=20Am=C3=A9lioration=20de=20l'affichage?= =?UTF-8?q?=20des=20factures.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gestion/whos.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gestion/whos.py b/gestion/whos.py index 472c2f95..6db62ee7 100755 --- a/gestion/whos.py +++ b/gestion/whos.py @@ -718,6 +718,7 @@ 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() # Mode de paiement f += coul(u"Mode de paiement : ", "gras") @@ -740,7 +741,7 @@ def list_articles(facture): return tableau(data, titre = [u'Code', u'Désignation', u'Nombre', u"Prix unitaire"], - largeur = [10, '*', 10, 10], + largeur = [10, '*', 10, 13], alignement = ['c', 'g', 'c', 'c'])