trytond-product/__init__.py
Sergi Almacellas Abellana 9b1f2e4b36 Add product identifiers
issue7086
review265481006
2019-06-06 19:20:43 +02:00

26 lines
710 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 .uom import *
from .category import *
from .product import *
from .configuration import *
def register():
Pool.register(
UomCategory,
Uom,
Category,
Template,
Product,
ProductIdentifier,
ProductListPrice,
ProductCostPriceMethod, # before ProductCostPrice for migration
ProductCostPrice,
TemplateCategory,
TemplateCategoryAll,
Configuration,
ConfigurationDefaultCostPriceMethod,
module='product', type_='model')