From ee6463c0dc688208f3dcb7d150db19b1b94acbb4 Mon Sep 17 00:00:00 2001 From: houssine Date: Wed, 15 May 2019 11:52:41 +0200 Subject: [PATCH] [FIX] fix export. removing an old field --- easy_my_coop_export_xlsx/wizard/export_global_wizard.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/easy_my_coop_export_xlsx/wizard/export_global_wizard.py b/easy_my_coop_export_xlsx/wizard/export_global_wizard.py index 8fb7f7b..e9104ce 100644 --- a/easy_my_coop_export_xlsx/wizard/export_global_wizard.py +++ b/easy_my_coop_export_xlsx/wizard/export_global_wizard.py @@ -22,8 +22,6 @@ HEADER = [ 'Pays', 'Nombre de part total', 'Montant total des parts', -# 'Numero de demande', -# 'Statut', 'Demande de liberation de capital', 'Communication', 'Nombre de part', @@ -225,7 +223,7 @@ class export_global_report(models.TransientModel): amount = quantity * sub_request.share_unit_price worksheet1bis.write(j, i, amount) i += 2 - worksheet1bis.write(j, i, sub_request.sync_date) + worksheet1bis.write(j, i, sub_request.date) j += 1 worksheet2 = workbook.add_worksheet()