trytond-account_consolidation/__init__.py

13 lines
405 B
Python
Raw Normal View History

2016-11-23 03:10:18 +01:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2021-09-18 14:01:26 +02:00
from . import account
2016-11-23 03:10:18 +01:00
def register():
Pool.register(
account.ConsolidationStart,
module='account_consolidation', type_='model')
Pool.register(
account.ConsolidationWizard,
module='account_consolidation', type_='wizard')