trytond-production_process/__init__.py

21 lines
561 B
Python
Raw Permalink Normal View History

2014-05-12 14:07:03 +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 23:50:56 +01:00
from . import product
from . import production
2014-05-12 14:07:03 +02:00
def register():
Pool.register(
2018-10-28 23:50:56 +01:00
production.Process,
production.Step,
production.BOMInput,
production.BOMOutput,
production.Operation,
production.Route,
production.BOM,
production.Production,
product.ProductBom,
production.StockMove,
2014-05-12 14:07:03 +02:00
module='production_process', type_='model')