mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-22 16:42:03 +02:00
19.0 vanilla
This commit is contained in:
parent
ba20ce7443
commit
768b70e05e
2357 changed files with 1057103 additions and 712486 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue