forked from OCA/l10n-brazil
-
Notifications
You must be signed in to change notification settings - Fork 5
/
__init__.py
41 lines (31 loc) · 1.3 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright (C) 2009 Renato Lima - Akretion
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from .hooks import pre_init_hook
from . import models
from . import tests
from odoo.addons import account
from odoo import api, tools, SUPERUSER_ID
# Install Simple Chart of Account Template for Brazilian Companies
_auto_install_l10n_original = account._auto_install_l10n
def _auto_install_l10n_br_generic_module(env):
country_code = env.company.country_id.code
if country_code and country_code.upper() == "BR":
if (
hasattr(env.user.company_id, "tax_framework")
and env.company.tax_framework == "3"
):
module_name_domain = [("name", "=", "l10n_br_coa_generic")]
else:
module_name_domain = [("name", "=", "l10n_br_coa_simple")]
# Load all l10n_br COA in Demo
if not tools.config["without_demo"]:
module_name_domain = [
("name", "in", ("l10n_br_coa_simple", "l10n_br_coa_generic"))
]
module_ids = env["ir.module.module"].search(
module_name_domain + [("state", "=", "uninstalled")]
)
module_ids.sudo().button_install()
else:
_auto_install_l10n_original(env)
account._auto_install_l10n = _auto_install_l10n_br_generic_module