details
This commit is contained in:
parent
2ff8af405d
commit
899cec0fdc
2 changed files with 3 additions and 4 deletions
|
|
@ -39,8 +39,8 @@ class LoginPage(BasePage):
|
||||||
self.browser.submit(nologin=True)
|
self.browser.submit(nologin=True)
|
||||||
|
|
||||||
class AccountsPage(BasePage):
|
class AccountsPage(BasePage):
|
||||||
ACCOUNT_TYPES = {u'COMPTE NEF': Account.TYPE_CHECKING
|
ACCOUNT_TYPES = {u'COMPTE NEF': Account.TYPE_CHECKING}
|
||||||
}
|
|
||||||
CPT_ROW_ID = 0
|
CPT_ROW_ID = 0
|
||||||
CPT_ROW_NAME = 1
|
CPT_ROW_NAME = 1
|
||||||
CPT_ROW_NATURE = 2
|
CPT_ROW_NATURE = 2
|
||||||
|
|
@ -91,7 +91,6 @@ class Transaction(FrenchTransaction):
|
||||||
FrenchTransaction.TYPE_UNKNOWN),
|
FrenchTransaction.TYPE_UNKNOWN),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
class TransactionsPage(BasePage):
|
class TransactionsPage(BasePage):
|
||||||
def get_next_url(self):
|
def get_next_url(self):
|
||||||
# can be 'Suivant' or ' Suivant'
|
# can be 'Suivant' or ' Suivant'
|
||||||
|
|
@ -163,4 +162,3 @@ class ComingTransactionsPage(BasePage):
|
||||||
t.set_amount("", debit)
|
t.set_amount("", debit)
|
||||||
|
|
||||||
yield t
|
yield t
|
||||||
pass
|
|
||||||
|
|
|
||||||
|
|
@ -28,3 +28,4 @@ class CreditCooperatifTest(BackendTest):
|
||||||
if len(l) > 0:
|
if len(l) > 0:
|
||||||
a = l[0]
|
a = l[0]
|
||||||
list(self.backend.iter_history(a))
|
list(self.backend.iter_history(a))
|
||||||
|
list(self.backend.iter_coming(a))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue