oca-ocb-l10n_europe/odoo-bringout-oca-ocb-l10n_ch/l10n_ch/__init__.py
2025-08-29 15:20:52 +02:00

31 lines
1 KiB
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import models
from . import report
from . import wizard
from odoo import api, SUPERUSER_ID
def load_translations(env):
env.ref('l10n_ch.l10nch_chart_template').process_coa_translations()
def init_settings(env):
'''If the company is localized in Switzerland, activate the cash rounding by default.
'''
# The cash rounding is activated by default only if the company is localized in Switzerland or Liechtenstein.
for company in env['res.company'].search([('partner_id.country_id.code', 'in', ["CH", "LI"])]):
res_config_id = env['res.config.settings'].create({
'company_id': company.id,
'group_cash_rounding': True
})
# We need to call execute, otherwise the "implied_group" in fields are not processed.
res_config_id.execute()
def post_init(cr, registry):
env = api.Environment(cr, SUPERUSER_ID, {})
load_translations(env)
init_settings(env)