fix support of PEA accounts

This commit is contained in:
Baptiste Delpey 2015-02-23 18:49:51 +01:00 committed by Romain Bignon
commit 504240c29b
2 changed files with 42 additions and 2 deletions

View file

@ -25,7 +25,7 @@ from dateutil.relativedelta import relativedelta
from weboob.deprecated.browser import Browser, BrowserIncorrectPassword
from .pages.login import LoginPage
from .pages.accounts_list import GlobalAccountsList, AccountsList, AccountHistoryPage, InvestmentHistoryPage
from .pages.accounts_list import GlobalAccountsList, AccountsList, AccountHistoryPage, InvestmentHistoryPage, PeaHistoryPage
__all__ = ['Fortuneo']
@ -47,7 +47,7 @@ class Fortuneo(Browser):
'.*/prive/mes-comptes/compte-courant/consulter-situation/consulter-solde\.jsp.*' : AccountHistoryPage,
'.*/prive/mes-comptes/compte-titres-.*': InvestmentHistoryPage,
'.*/prive/mes-comptes/assurance-vie.*': InvestmentHistoryPage,
'.*/prive/mes-comptes/pea.*': InvestmentHistoryPage,
'.*/prive/mes-comptes/pea.*': PeaHistoryPage,
'.*/prive/mes-comptes/compte-especes.*': InvestmentHistoryPage,
}