change currencies integer constants to ISO code strings

This commit is contained in:
Romain Bignon 2014-02-16 19:48:17 +01:00
commit 6099560b8c
11 changed files with 24 additions and 39 deletions

View file

@ -61,7 +61,7 @@ class CitelisBrowser(BaseBrowser):
self.location('%s://%s/summarySearch.do?reqCode=search' % (self.PROTOCOL, self.DOMAIN))
account = Account()
account.id = u'1'
account.currency = Account.CUR_EUR
account.currency = 'EUR'
account.balance = self.page.get_balance()
account.label = u'Synthèse financière'
return [account]