-
-
Notifications
You must be signed in to change notification settings - Fork 244
/
__init__.py
45 lines (35 loc) · 1.45 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
42
43
44
45
# 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 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's in demo mode:
env.cr.execute("select demo from ir_module_module where name='l10n_br_base';")
if env.cr.fetchone()[0]:
module_name_domain = [
(
"name",
"in",
("l10n_br_coa_simple", "l10n_br_coa_generic", "l10n_generic_coa"),
)
]
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