trytond-production_quality_.../__init__.py

15 lines
426 B
Python
Raw Normal View History

2014-07-01 18:01:25 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2018-10-28 01:19:26 +02:00
from . import production
from . import ir
2014-07-01 18:01:25 +02:00
def register():
Pool.register(
ir.Cron,
2018-10-28 01:19:26 +02:00
production.Template,
production.Product,
2018-10-28 01:19:26 +02:00
production.Production,
production.ProductionTemplate,
2014-07-01 18:01:25 +02:00
module='production_quality_control', type_='model')