From 5ce2dc9fbb21920321d00459d7cb8162ec76c80e Mon Sep 17 00:00:00 2001 From: Vincent Ardisson Date: Thu, 9 Aug 2018 15:19:04 +0200 Subject: [PATCH] [lcl] hardcode DEPOSIT account currency The currency seems missing on the deposit accounts list page. --- modules/lcl/pages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/lcl/pages.py b/modules/lcl/pages.py index f67d6a5d0b..48accf363c 100644 --- a/modules/lcl/pages.py +++ b/modules/lcl/pages.py @@ -1176,6 +1176,7 @@ class item(ItemElement): obj_type = Account.TYPE_DEPOSIT obj_label = Format('%s %s', CleanText(TableCell('name')), CleanText(TableCell('owner'))) obj_balance = MyDecimal(TableCell('balance')) + obj_currency = 'EUR' obj__contract = CleanText(TableCell('name')) obj__link_index = Regexp(CleanText('.//a/@id'), r'(\d+)') # So it can be modified later -- GitLab