trytond-production_drawing/__init__.py

18 lines
474 B
Python
Raw Normal View History

2017-08-25 11:45: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
2017-08-25 12:01:35 +02:00
from . import drawing
from . import bom
from . import production
2017-08-25 11:45:25 +02:00
def register():
Pool.register(
2017-08-25 12:01:35 +02:00
drawing.Drawing,
drawing.DrawingPosition,
bom.BOM,
bom.BOMDrawingLine,
production.Production,
production.ProductionDrawingLine,
2017-08-25 11:45:25 +02:00
module='production_drawing', type_='model')