trytond-account_code_digits/__init__.py

21 lines
576 B
Python

#This file is part account_code_digits module for Tryton.
#The COPYRIGHT file at the top level of this repository contains
#the full copyright notices and license terms.
from trytond.pool import Pool
from .account import *
from .configuration import *
def register():
Pool.register(
Configuration,
AccountTemplate,
Account,
CreateChartAccount,
UpdateChartStart,
module='account_code_digits', type_='model')
Pool.register(
CreateChart,
UpdateChart,
module='account_code_digits', type_='wizard')