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 *
|
2016-01-21 10:37:28 +01:00
|
|
|
from .configuration import *
|
2012-09-24 22:18:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
def register():
|
|
|
|
Pool.register(
|
|
|
|
UomCategory,
|
|
|
|
Uom,
|
|
|
|
Category,
|
|
|
|
Template,
|
|
|
|
Product,
|
2017-04-01 00:31:59 +02:00
|
|
|
ProductListPrice,
|
2017-07-05 14:51:45 +02:00
|
|
|
ProductCostPriceMethod, # before ProductCostPrice for migration
|
2017-04-01 00:31:59 +02:00
|
|
|
ProductCostPrice,
|
2016-03-19 09:05:13 +01:00
|
|
|
TemplateCategory,
|
2017-10-02 16:06:36 +02:00
|
|
|
TemplateCategoryAll,
|
2016-01-21 10:37:28 +01:00
|
|
|
Configuration,
|
2017-04-01 00:31:59 +02:00
|
|
|
ConfigurationDefaultCostPriceMethod,
|
2012-09-24 22:18:00 +02:00
|
|
|
module='product', type_='model')
|