19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:30:07 +01:00
parent ba20ce7443
commit 768b70e05e
2357 changed files with 1057103 additions and 712486 deletions

View file

@ -1,3 +1,16 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models
from . import report
from . import wizard
def _configure_journals(env):
# if we already have a coa installed, create journal and set property field
for company in env['res.company'].search([('chart_template', '!=', False)], order="parent_path"):
ChartTemplate = env['account.chart.template'].with_company(company)
template_code = company.chart_template
template_data = ChartTemplate._get_chart_template_data(template_code)['template_data']
if 'property_stock_account_production_cost_id' in template_data:
data = {'property_stock_account_production_cost_id': template_data['property_stock_account_production_cost_id']}
ChartTemplate._post_load_data(template_code, company, data)