mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-22 10:42:06 +02:00
Initial commit: Accounting packages
This commit is contained in:
commit
4ef34c2317
2661 changed files with 1709616 additions and 0 deletions
|
|
@ -0,0 +1,49 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
||||
from odoo.tests import tagged
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class SpreadsheetAccountGroupTest(AccountTestInvoicingCommon):
|
||||
|
||||
def test_fetch_account_no_group(self):
|
||||
self.assertEqual(self.env["account.account"].get_account_group([]), [])
|
||||
|
||||
def test_fetch_account_one_group(self):
|
||||
self.assertEqual(self.env["account.account"].get_account_group(['income_other']), [['450000']])
|
||||
|
||||
def test_group_with_no_account(self):
|
||||
self.env['account.account']\
|
||||
.search([('account_type', '=', 'income_other'), ('company_id', '=', self.env.company.id)])\
|
||||
.unlink()
|
||||
self.assertEqual(self.env["account.account"].get_account_group(['income_other']), [[]])
|
||||
|
||||
def test_with_wrong_account_type_id(self):
|
||||
self.assertEqual(self.env["account.account"].get_account_group([999999]), [[]])
|
||||
|
||||
def test_group_with_multiple_accounts(self):
|
||||
self.env['account.account'].create({
|
||||
'name': "test_group_with_multiple_accounts 1",
|
||||
'account_type': 'income_other',
|
||||
'code': '123',
|
||||
})
|
||||
self.env['account.account'].create({
|
||||
'name': "test_group_with_multiple_accounts 2",
|
||||
'account_type': 'income_other',
|
||||
'code': '789',
|
||||
})
|
||||
|
||||
self.assertEqual(
|
||||
[sorted(x) for x in self.env['account.account'].get_account_group(['income_other'])],
|
||||
[['123', '450000', '789']],
|
||||
)
|
||||
|
||||
def test_response_is_ordered(self):
|
||||
o1_codes_1, o1_codes_2 = self.env["account.account"].get_account_group(
|
||||
["income", "income_other"]
|
||||
)
|
||||
o2_codes_2, o2_codes_1 = self.env["account.account"].get_account_group(
|
||||
["income_other", "income"]
|
||||
)
|
||||
self.assertEqual(o1_codes_1, o2_codes_1)
|
||||
self.assertEqual(o1_codes_2, o2_codes_2)
|
||||
Loading…
Add table
Add a link
Reference in a new issue