trytond-account_import_cont.../__init__.py

17 lines
501 B
Python
Raw Permalink Normal View History

2016-03-08 15:32:41 +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
2017-04-19 17:27:09 +02:00
from . import account
2016-03-08 15:32:41 +01:00
def register():
Pool.register(
2017-04-19 17:27:09 +02:00
account.AccountImportContaplusStart,
account.ImportRecord,
account.Move,
account.Invoice,
2016-03-08 15:32:41 +01:00
module='account_import_contaplus', type_='model')
Pool.register(
2017-04-19 17:27:09 +02:00
account.AccountImportContaplus,
2016-03-08 15:32:41 +01:00
module='account_import_contaplus', type_='wizard')