From 075b93ddd0cb5b37201006e44d1c290dabede60b Mon Sep 17 00:00:00 2001 From: Quentin Defenouillere Date: Wed, 16 Sep 2020 11:52:02 +0200 Subject: [PATCH] [cragr] Type some accounts A life insurance (ANAE) was not typed therefore its investments were not scraped correctly. --- modules/cragr/pages.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/cragr/pages.py b/modules/cragr/pages.py index 9325716d09..9e33f50936 100644 --- a/modules/cragr/pages.py +++ b/modules/cragr/pages.py @@ -180,6 +180,7 @@ class ContractsPage(LoggedPage, HTMLPage): 'PEPS': Account.TYPE_SAVINGS, # Plan d'Epargne Populaire 'LIPROJAGRI': Account.TYPE_SAVINGS, 'épargne disponible': Account.TYPE_SAVINGS, + 'LTA': Account.TYPE_SAVINGS, # Livret Tandem 'DAT': Account.TYPE_DEPOSIT, 'DPA': Account.TYPE_DEPOSIT, 'DATG': Account.TYPE_DEPOSIT, @@ -245,6 +246,7 @@ class ContractsPage(LoggedPage, HTMLPage): 'ESPGESTPEP': Account.TYPE_LIFE_INSURANCE, # Espace Gestion PEP 'OPTA': Account.TYPE_LIFE_INSURANCE, # Optalissime 'RENV VITAL': Account.TYPE_LIFE_INSURANCE, # Rente viagère Vitalité + 'ANAE': Account.TYPE_LIFE_INSURANCE, 'ATOUT LIB': Account.TYPE_REVOLVING_CREDIT, 'PACC': Account.TYPE_CONSUMER_CREDIT, # 'PAC' = 'Prêt à consommer' 'PACP': Account.TYPE_CONSUMER_CREDIT, -- GitLab