trytond-product_cost_plan/__init__.py

23 lines
614 B
Python
Raw Permalink Normal View History

2018-04-25 15:44:48 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
2013-10-17 10:59:15 +02:00
from trytond.pool import Pool
2018-04-25 15:44:48 +02:00
from . import plan
from . import configuration
2013-10-17 10:59:15 +02:00
def register():
Pool.register(
2018-04-25 15:44:48 +02:00
plan.Plan,
plan.PlanBOM,
plan.PlanProductLine,
plan.PlanCostType,
plan.PlanCost,
configuration.Configuration,
configuration.ConfigurationProductcostPlan,
plan.CreateBomStart,
2013-10-17 10:59:15 +02:00
module='product_cost_plan', type_='model')
2014-03-25 23:43:47 +01:00
Pool.register(
2018-04-25 15:44:48 +02:00
plan.CreateBom,
2014-03-25 23:43:47 +01:00
module='product_cost_plan', type_='wizard')