kalenislims/lims_instrument/__init__.py

22 lines
770 B
Python
Raw Normal View History

2017-10-08 02:23:22 +02:00
# This file is part of lims_instrument 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
2018-05-24 01:47:26 +02:00
from . import resultsimport
2017-10-08 02:23:22 +02:00
def register():
Pool.register(
2018-05-24 01:47:26 +02:00
resultsimport.NotebookLine,
resultsimport.ResultsImport,
resultsimport.NotebookLoadResultsFileStart,
resultsimport.NotebookLoadResultsFileEmpty,
resultsimport.NotebookLoadResultsFileResult,
resultsimport.NotebookLoadResultsFileWarning,
resultsimport.NotebookLoadResultsFileExport,
2017-10-08 02:23:22 +02:00
module='lims_instrument', type_='model')
Pool.register(
2018-05-24 01:47:26 +02:00
resultsimport.NotebookLoadResultsFile,
2017-10-08 02:23:22 +02:00
module='lims_instrument', type_='wizard')