handle investment pages even if they aren't implemented yet

This commit is contained in:
Romain Bignon 2014-10-16 11:11:09 +02:00
commit 251eaef0c7
2 changed files with 12 additions and 7 deletions

View file

@ -49,6 +49,9 @@ class Transaction(FrenchTransaction):
(re.compile('^(?P<category>REMISE CHEQUES)(?P<text>.*)'), FrenchTransaction.TYPE_DEPOSIT),
]
class InvestmentHistoryPage(Page):
def get_operations(self, _id):
raise NotImplementedError()
class AccountHistoryPage(Page):
def get_operations(self, _id):