support deferred debit cards
This commit is contained in:
parent
a3d1c8daa5
commit
85c9554733
3 changed files with 86 additions and 46 deletions
|
|
@ -60,15 +60,12 @@ class SocieteGeneraleBackend(BaseBackend, ICapBank):
|
|||
|
||||
def iter_history(self, account):
|
||||
with self.browser:
|
||||
for tr in self.browser.iter_history(account._link_id):
|
||||
for tr in self.browser.iter_history(account):
|
||||
if not tr._coming:
|
||||
yield tr
|
||||
|
||||
def iter_coming(self, account):
|
||||
return iter([])
|
||||
|
||||
# XXX do not print coming operations, as their labels are really useless.
|
||||
#with self.browser:
|
||||
# for tr in self.browser.iter_history(account._link_id):
|
||||
# if tr._coming:
|
||||
# yield tr
|
||||
with self.browser:
|
||||
for tr in self.browser.iter_history(account):
|
||||
if tr._coming:
|
||||
yield tr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue