trytond-product/__init__.py

27 lines
710 B
Python
Raw Normal View History

2014-12-02 12:55:30 +01:00
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
2008-06-23 20:55:06 +02:00
2012-09-24 22:18:00 +02:00
from trytond.pool import Pool
2011-12-14 17:04:24 +01:00
from .uom import *
from .category import *
from .product import *
from .configuration import *
2012-09-24 22:18:00 +02:00
def register():
Pool.register(
UomCategory,
Uom,
Category,
Template,
Product,
ProductIdentifier,
ProductListPrice,
ProductCostPriceMethod, # before ProductCostPrice for migration
ProductCostPrice,
TemplateCategory,
TemplateCategoryAll,
Configuration,
ConfigurationDefaultCostPriceMethod,
2012-09-24 22:18:00 +02:00
module='product', type_='model')