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'])