mirror of
https://gitlab.com/datalifeit/trytond-product
synced 2023-12-14 04:23:04 +01:00
9b1f2e4b36
issue7086 review265481006
26 lines
710 B
Python
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')
|