kalenislims/lims_project/__init__.py

19 lines
508 B
Python
Raw Normal View History

2017-10-08 02:23:22 +02:00
# This file is part of lims_project 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 project
2017-10-08 02:23:22 +02:00
def register():
Pool.register(
2018-05-24 01:47:26 +02:00
project.Project,
project.Entry,
project.Sample,
project.CreateSampleStart,
2017-10-08 02:23:22 +02:00
module='lims_project', type_='model')
Pool.register(
2018-05-24 01:47:26 +02:00
project.CreateSample,
2017-10-08 02:23:22 +02:00
module='lims_project', type_='wizard')