trytond-product_cost_plan/__init__.py

17 lines
398 B
Python
Raw Normal View History

2013-10-17 10:59:15 +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
from .plan import *
2014-03-16 04:07:48 +01:00
from .configuration import *
2013-10-17 10:59:15 +02:00
def register():
Pool.register(
Plan,
PlanBOM,
PlanProductLine,
PlanCostType,
PlanCost,
2014-03-16 04:07:48 +01:00
Configuration,
2013-10-17 10:59:15 +02:00
module='product_cost_plan', type_='model')