trytond-production_cost_manage/__init__.py

13 lines
388 B
Python

#This file is part of 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 .cost_manage import CostDistribution
from .production import Production
def register():
Pool.register(
Production,
CostDistribution,
module='production_cost_manage', type_='model')