kalenislims/lims_industry/__init__.py

23 lines
625 B
Python
Raw Normal View History

2019-08-29 18:47:58 +02:00
# This file is part of lims_industry 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
from . import industry
from . import party
def register():
Pool.register(
industry.Plant,
industry.EquipmentType,
industry.Brand,
industry.ComponentType,
industry.EquipmentTemplate,
industry.EquipmentTemplateComponentType,
industry.Equipment,
industry.Component,
party.Party,
party.Address,
module='lims_industry', type_='model')