forked from OCA/l10n-brazil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhooks.py
25 lines (21 loc) · 793 Bytes
/
hooks.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
# Copyright (C) 2020 - Gabriel Cardoso de Faria <[email protected]>
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from odoo import SUPERUSER_ID, api, tools
def post_init_hook(cr, registry):
env = api.Environment(cr, SUPERUSER_ID, {})
coa_simple_tmpl = env.ref("l10n_br_coa_simple.l10n_br_coa_simple_chart_template")
# Load COA for demo Company
company_sn = env.ref(
"l10n_br_base.empresa_simples_nacional", raise_if_not_found=False
)
if company_sn:
coa_simple_tmpl.try_loading(company=company_sn)
tools.convert_file(
cr,
"l10n_br_coa_simple",
"demo/account_journal.xml",
None,
mode="init",
noupdate=True,
kind="init",
)