From 06f0318643e3557796fe829221c435def796b68b Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Wed, 17 Jul 2019 14:41:37 +0200 Subject: [PATCH] [cragr/regions] Typed missing account as CHECKING Checking accounts need to be typed correctly in order to retrieve their transactions. Closes: 12422@zendesk --- modules/cragr/regions/pages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/cragr/regions/pages.py b/modules/cragr/regions/pages.py index ba936004a1..5682463c98 100644 --- a/modules/cragr/regions/pages.py +++ b/modules/cragr/regions/pages.py @@ -196,6 +196,7 @@ def get_iban(self): 'CCHQ': Account.TYPE_CHECKING, 'CCOU': Account.TYPE_CHECKING, 'AUTO ENTRP': Account.TYPE_CHECKING, + 'AUTO ENTRS': Account.TYPE_CHECKING, 'DEVISE USD': Account.TYPE_CHECKING, 'EKO': Account.TYPE_CHECKING, 'DEVISE CHF': Account.TYPE_CHECKING, -- GitLab