mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-25 05:01:58 +02:00
14 lines
443 B
Python
14 lines
443 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from . import models
|
|
from . import demo
|
|
from . import wizard
|
|
|
|
def init_settings(env):
|
|
# Activate cash rounding by default for all companies as soon as the module is installed.
|
|
group_user = env.ref('base.group_user').sudo()
|
|
group_user._apply_group(env.ref('account.group_cash_rounding'))
|
|
|
|
def post_init(env):
|
|
init_settings(env)
|