change email dumas passwords

This commit is contained in:
2021-07-21 20:32:01 +02:00
parent c142e0ccb6
commit 7a706ba9f2
8 changed files with 56 additions and 79 deletions

View File

@@ -699,7 +699,7 @@ def tarifs(request):
# construire la liste
liste=[]
for item in items:
d = (item.ref, item.libelle, item.unite, to_euro(item.prixht), item.modif_le.strftime("%d-%m-%Y"))
d = (item.ref, item.famille, item.libelle[:100], to_euro(item.prixht), item.unite, item.modif_le.strftime("%d-%m-%Y"))
liste.append(d)
return {
@@ -801,7 +801,7 @@ def tarifs_import(request):
request.session.flash(temp_file + " -> Ce fichier ne semble pas être un tarif AXA", 'danger')
return HTTPFound(location=url)
# import pdb;pdb.set_trace()
import pdb;pdb.set_trace()
for nsheet in range(book.nsheets):
# pour chaque feuille dans le tableau XLS
sh = book.sheet_by_index(nsheet)