[FIX] account_tax_balance: Fallback to load CoA

Since odoo/odoo@d0342c8, the default existing company is not getting a
CoA automatically, provoking than the current tests fail with error:

odoo.exceptions.UserError: No journal could be found in company My Company (San Francisco) for any of those types: sale

provoked by the lack of a CoA installed, so we put little code to select
the first available CoA if `l10n_generic_coa` is not installed.
pull/1292/head
Pedro M. Baeza 2025-02-24 20:56:45 +01:00
parent 225ce9a96d
commit 529b825ed7
1 changed files with 9 additions and 0 deletions

View File

@ -32,6 +32,15 @@ class TestAccountTaxBalance(HttpCase):
)
cls.env.user.groups_id = [(4, cls.env.ref("account.group_account_user").id)]
cls.company = cls.env.user.company_id
if not cls.company.chart_template_id:
# Load a CoA if there's none in the company
coa = cls.env.ref("l10n_generic_coa.configurable_chart_template", False)
if not coa:
# Load the first available CoA
coa = cls.env["account.chart.template"].search(
[("visible", "=", True)], limit=1
)
coa.try_loading(company=cls.company, install_demo=False)
cls.range_type = cls.env["date.range.type"].create(
{"name": "Fiscal year", "allow_overlap": False}
)