mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-25 13:42:09 +02:00
11 lines
329 B
Python
11 lines
329 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
# Copyright (C) Quartile Limited
|
|
|
|
from odoo import api, SUPERUSER_ID
|
|
|
|
|
|
def load_translations(cr, registry):
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
|
env.ref('l10n_jp.l10n_jp_chart_template').process_coa_translations()
|