trytond-production_subcontract/__init__.py

16 lines
453 B
Python
Raw Normal View History

2014-06-19 23:50:31 +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-04-29 10:27:33 +02:00
from . import production
2014-06-19 23:50:31 +02:00
def register():
Pool.register(
2018-04-29 10:27:33 +02:00
production.Party,
production.PurchaseRequest,
production.BOM,
production.Production,
production.Purchase,
production.PartyProductionWarehouse,
module='production_subcontract', type_='model')