forked from Mapan/odoo17e
11 lines
451 B
Python
11 lines
451 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from . import models
|
|
|
|
|
|
def _l10n_ie_reports_post_init(env):
|
|
for company in env['res.company'].search([('chart_template', '=', 'ie')], order="parent_path"):
|
|
ChartTemplate = env['account.chart.template'].with_company(company)
|
|
ChartTemplate._load_data({
|
|
'res.company': ChartTemplate._get_ie_reports_res_company(company.chart_template),
|
|
})
|