|
@ -63,21 +63,58 @@ class TestAccountBankStatementImport(TransactionCase): |
|
|
def test_import_preconditions(self): |
|
|
def test_import_preconditions(self): |
|
|
"""Checks that the import raises an exception if: |
|
|
"""Checks that the import raises an exception if: |
|
|
* no bank account found for the account_number |
|
|
* no bank account found for the account_number |
|
|
* no account_journal found on the bank_account |
|
|
|
|
|
|
|
|
* if the bank account exists, but is not for a company |
|
|
|
|
|
|
|
|
|
|
|
The message 'Can not determine journal' is now very hard to trigger |
|
|
|
|
|
because the system sets a journal on a bank account, as soon as it |
|
|
|
|
|
is linked to a company. |
|
|
""" |
|
|
""" |
|
|
stmt_vals = { |
|
|
|
|
|
'currency_code': 'EUR', |
|
|
|
|
|
'account_number': '123456789'} |
|
|
|
|
|
|
|
|
def assert_raise_no_account(stmt_vals): |
|
|
|
|
|
import_model = self.env['account.bank.statement.import'] |
|
|
with self.assertRaises(UserError) as e: |
|
|
with self.assertRaises(UserError) as e: |
|
|
self.statement_import_model._import_statement(stmt_vals.copy()) |
|
|
|
|
|
self.assertEqual(e.exception.message, |
|
|
|
|
|
'Can not find the account number 123456789.') |
|
|
|
|
|
self.statement_import_model._create_bank_account('123456789') |
|
|
|
|
|
with self.assertRaises(UserError) as e: |
|
|
|
|
|
self.statement_import_model._import_statement(stmt_vals.copy()) |
|
|
|
|
|
|
|
|
import_model._import_statement(stmt_vals.copy()) |
|
|
self.assertEqual( |
|
|
self.assertEqual( |
|
|
e.exception.message[:25], 'Can not determine journal' |
|
|
|
|
|
|
|
|
e.exception.message, |
|
|
|
|
|
'Can not find the account number 123456789.' |
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
ACCOUNT_NUMBER = '123456789' |
|
|
|
|
|
stmt_vals = { |
|
|
|
|
|
'currency_code': 'EUR', |
|
|
|
|
|
'account_number': ACCOUNT_NUMBER, |
|
|
|
|
|
} |
|
|
|
|
|
# Check error before any bank created |
|
|
|
|
|
assert_raise_no_account(stmt_vals) |
|
|
|
|
|
# Now create a non company account. Error should still be raised |
|
|
|
|
|
import_model = self.env['account.bank.statement.import'] |
|
|
|
|
|
import_model._create_bank_account(ACCOUNT_NUMBER) |
|
|
|
|
|
assert_raise_no_account(stmt_vals) |
|
|
|
|
|
|
|
|
|
|
|
def test_find_company_bank_account_id(self): |
|
|
|
|
|
"""Checks wether code can find the right bank account. |
|
|
|
|
|
* With duplicates, take the one for the company |
|
|
|
|
|
* With no account number specified, use journal to find account |
|
|
|
|
|
""" |
|
|
|
|
|
import_model = self.env['account.bank.statement.import'] |
|
|
|
|
|
ACCOUNT_NUMBER = '123456789' |
|
|
|
|
|
self.statement_import_model._create_bank_account( |
|
|
|
|
|
ACCOUNT_NUMBER |
|
|
|
|
|
) |
|
|
|
|
|
company_bank = self.statement_import_model._create_bank_account( |
|
|
|
|
|
ACCOUNT_NUMBER, company_id=self.env.user.company_id.id |
|
|
|
|
|
) |
|
|
|
|
|
# Create another company bank account |
|
|
|
|
|
self.statement_import_model._create_bank_account( |
|
|
|
|
|
'987654321', company_id=self.env.user.company_id.id |
|
|
) |
|
|
) |
|
|
|
|
|
# find bank account with account number |
|
|
|
|
|
found_id = import_model._find_company_bank_account_id(ACCOUNT_NUMBER) |
|
|
|
|
|
self.assertEqual(found_id, company_bank.id) |
|
|
|
|
|
# find bank account with journal |
|
|
|
|
|
found_id = import_model.with_context( |
|
|
|
|
|
journal_id=company_bank.journal_id.id, |
|
|
|
|
|
)._find_company_bank_account_id('') |
|
|
|
|
|
self.assertEqual(found_id, company_bank.id) |
|
|
|
|
|
|
|
|
def test_create_bank_account(self): |
|
|
def test_create_bank_account(self): |
|
|
"""Checks that the bank_account created by the import belongs to the |
|
|
"""Checks that the bank_account created by the import belongs to the |
|
|