From 2a7bc4d2b3eb4119f0e38259753ebeacdde30169 Mon Sep 17 00:00:00 2001 From: Philippine Aylor Date: Thu, 3 Oct 2019 11:29:55 +0200 Subject: [PATCH] [cragr] Account.TYPE_ changed / adding 2 missing I added 2 new account types, both saving account. CEL2 (compte epargne logement) CSLB5 (compte sur livret) Closes: 13758@Zendesk --- modules/cragr/regions/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/cragr/regions/pages.py b/modules/cragr/regions/pages.py index d5fa82ad25..e8a8615c1a 100644 --- a/modules/cragr/regions/pages.py +++ b/modules/cragr/regions/pages.py @@ -212,9 +212,11 @@ def get_iban(self): 'LDD': Account.TYPE_SAVINGS, 'PEL': Account.TYPE_SAVINGS, 'CEL': Account.TYPE_SAVINGS, + 'CEL2': Account.TYPE_SAVINGS, 'CODEBIS': Account.TYPE_SAVINGS, 'LJMO': Account.TYPE_SAVINGS, 'CSL': Account.TYPE_SAVINGS, + 'CSLB5': Account.TYPE_SAVINGS, 'LEP': Account.TYPE_SAVINGS, 'LEF': Account.TYPE_SAVINGS, 'TIWI': Account.TYPE_SAVINGS, -- GitLab