mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-18 05:02:07 +02:00
9 lines
310 B
Python
9 lines
310 B
Python
# Copyright 2020 Brainbean Apps (https://brainbeanapps.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import SUPERUSER_ID, api
|
|
|
|
|
|
def post_init_hook(cr, registry):
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
|
env["account.analytic.account"]._assign_default_codes()
|