support CIF accounts
This commit is contained in:
parent
d36618a7b8
commit
15f536d09b
2 changed files with 19 additions and 2 deletions
|
|
@ -140,6 +140,9 @@ class BNPorc(BaseBrowser):
|
|||
return None
|
||||
|
||||
def iter_history(self, id):
|
||||
if id is None:
|
||||
return iter([])
|
||||
|
||||
if not self.is_on_page(AccountsList):
|
||||
self.location('/NSFR?Action=DSP_VGLOBALE')
|
||||
|
||||
|
|
@ -178,6 +181,9 @@ class BNPorc(BaseBrowser):
|
|||
return self.page.iter_operations()
|
||||
|
||||
def iter_coming_operations(self, id):
|
||||
if id is None:
|
||||
return iter([])
|
||||
|
||||
if not self.is_on_page(AccountsList):
|
||||
self.location('/NSFR?Action=DSP_VGLOBALE')
|
||||
execution = self.page.get_execution_id()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue