forked from Mapan/odoo17e
12 lines
475 B
Python
12 lines
475 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import models
|
|
|
|
def _l10n_gr_reports_post_init(env):
|
|
for company in env['res.company'].search([('chart_template', '=', 'gr')], order="parent_path"):
|
|
ChartTemplate = env['account.chart.template'].with_company(company)
|
|
ChartTemplate._load_data({
|
|
'res.company': ChartTemplate._get_gr_reports_res_company(company.chart_template),
|
|
})
|