Browse Source

OFX: Display both bank number and account number in bank statement name

Adapt automated test
pull/62/head
Alexis de Lattre 9 years ago
parent
commit
8ac21acea3
  1. 2
      account_bank_statement_import_ofx/account_bank_statement_import_ofx.py
  2. 2
      account_bank_statement_import_ofx/tests/test_import_bank_statement.py

2
account_bank_statement_import_ofx/account_bank_statement_import_ofx.py

@ -84,7 +84,7 @@ class AccountBankStatementImport(models.TransientModel):
))
vals_bank_statement = {
'name': ofx.account.number,
'name': '%s-%s' % (ofx.account.routing_number, ofx.account.number),
'transactions': transactions,
'balance_start': ofx.account.statement.balance,
'balance_end_real':

2
account_bank_statement_import_ofx/tests/test_import_bank_statement.py

@ -22,7 +22,7 @@ class TestOfxFile(TransactionCase):
dict(data_file=ofx_file))
bank_statement.import_file()
bank_st_record = self.bank_statement_model.search(
[('name', '=', '000000123')])[0]
[('name', '=', '000000123-123456')])[0]
self.assertEquals(bank_st_record.balance_start, 2156.56)
self.assertEquals(bank_st_record.balance_end_real, 1796.56)

Loading…
Cancel
Save