trytond-production_lot_cost/__init__.py

12 lines
312 B
Python

#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 production
def register():
Pool.register(
production.BOM,
production.Production,
module='production_lot_cost', type_='model')