From 6e4d0d46ab146694b83bdd7edb0144b1f0f51095 Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Tue, 27 Nov 2018 11:33:13 +0100 Subject: [PATCH] [creditdunord] modified type market to fit "TITRES", "TIT." and "TIT" Market accounts (compte titres) may have multiple ways of contraction so I just put "TIT" that matched all of them. Closes: 8315@zendesk --- modules/creditdunord/pages.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/creditdunord/pages.py b/modules/creditdunord/pages.py index a9655f598a..bbfbdb210f 100755 --- a/modules/creditdunord/pages.py +++ b/modules/creditdunord/pages.py @@ -232,6 +232,7 @@ class AccountsPage(LoggedPage, CDNBasePage): u'CARTE': Account.TYPE_CARD, u'COMPTE COURANT': Account.TYPE_CHECKING, u'CPT COURANT': Account.TYPE_CHECKING, + u'CONSEILLE RESIDENT': Account.TYPE_CHECKING, u'PEA': Account.TYPE_PEA, u'P.E.A': Account.TYPE_PEA, u'COMPTE ÉPARGNE': Account.TYPE_SAVINGS, @@ -247,7 +248,7 @@ class AccountsPage(LoggedPage, CDNBasePage): u'PRÊT': Account.TYPE_LOAN, u'CREDIT': Account.TYPE_LOAN, u'FACILINVEST': Account.TYPE_LOAN, - u'TITRES': Account.TYPE_MARKET, + u'TIT': Account.TYPE_MARKET, u'COMPTE A TERME': Account.TYPE_DEPOSIT, } -- GitLab