use the operation date, not value one
This commit is contained in:
parent
66cac07bbc
commit
04a3995416
1 changed files with 1 additions and 1 deletions
|
|
@ -292,7 +292,7 @@ class TransactionsPage(BasePage):
|
|||
|
||||
t = Transaction(tr.attrib['id'].split('_', 1)[1])
|
||||
|
||||
date = u''.join([txt.strip() for txt in tds[4].itertext()])
|
||||
date = u''.join([txt.strip() for txt in tds[3].itertext()])
|
||||
raw = u' '.join([txt.strip() for txt in tds[1].itertext()])
|
||||
debit = u''.join([txt.strip() for txt in tds[-2].itertext()])
|
||||
credit = u''.join([txt.strip() for txt in tds[-1].itertext()])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue