1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_pe_edi/hooks.py
2024-12-10 09:04:09 +07:00

8 lines
420 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
def post_init_hook(env):
for company in env['res.company'].search([('chart_template', '=', 'pe')], order="parent_path"):
ChartTemplate = env['account.chart.template'].with_company(company)
tax_group_data = ChartTemplate._get_pe_edi_account_tax_group()
ChartTemplate._load_data({'account.tax.group': tax_group_data})