trytond-account_import_cont.../__init__.py

17 lines
462 B
Python
Raw 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
from .account import *
def register():
Pool.register(
AccountImportContaplusStart,
2016-04-07 11:58:18 +02:00
ImportRecord,
Move,
2016-04-12 10:57:30 +02:00
Invoice,
2016-03-08 15:32:41 +01:00
module='account_import_contaplus', type_='model')
Pool.register(
AccountImportContaplus,
module='account_import_contaplus', type_='wizard')